Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions accelerate/tools/dev-tools/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,30 @@ For Linux:
dotnet tool install --global AvaloniaUI.DeveloperTools.Linux
```

The Developer Tools will notify you when a new version is available.
It can be then updated via similar `dotnet tool update` command.
The Developer Tools will notify you when a new version is available. It can be then updated by running `dotnet tool update` command.

<details>
<summary>Developer tools update commands</summary>

To update on macOS:

```bash
dotnet tool update --global AvaloniaUI.DeveloperTools.macOS
```

To update on Windows:

```bash
dotnet tool update --global AvaloniaUI.DeveloperTools.Windows
```

To update on Linux:

```bash
dotnet tool update --global AvaloniaUI.DeveloperTools.Linux
```
</details>


## Step 2: Installing Diagnostics Support package

Expand Down