ProDiagnostics.Viewer 11.3.9-preview.24

This is a prerelease version of ProDiagnostics.Viewer.
dotnet tool install --global ProDiagnostics.Viewer --version 11.3.9-preview.24
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local ProDiagnostics.Viewer --version 11.3.9-preview.24
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=ProDiagnostics.Viewer&version=11.3.9-preview.24&prerelease
                    
nuke :add-package ProDiagnostics.Viewer --version 11.3.9-preview.24
                    

ProDataGrid

Build

Release GitHub Release

Badge Package Downloads
NuGet ProDataGrid Downloads
NuGet ProDiagnostics Downloads
NuGet ProDiagnostics.Transport Downloads
NuGet ProDiagnostics.Viewer Downloads

ProDataGrid is a high-performance DataGrid control for Avalonia.

Quick Start

Install the package:

dotnet add package ProDataGrid

Include the theme in App.axaml:

<Application.Styles>
  <FluentTheme />
  <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Fluent.v2.xaml" />
</Application.Styles>
<Application.Styles>
  <SimpleTheme />
  <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Simple.v2.xaml" />
</Application.Styles>

Basic XAML usage:

<DataGrid ItemsSource="{Binding People}"
          AutoGenerateColumns="False"
          UseLogicalScrollable="True">
  <DataGrid.Columns>
    <DataGridTextColumn Header="ID" Binding="{Binding Id}" Width="60" />
    <DataGridTextColumn Header="Name" Binding="{Binding Name}" Width="*" />
    <DataGridCheckBoxColumn Header="Active" Binding="{Binding IsActive}" Width="80" />
  </DataGrid.Columns>
</DataGrid>

Documentation

  • DocFX articles: docfx/articles/intro.md
  • DocFX entry page: docfx/index.md

ProDiagnostics

ProDiagnostics provides Avalonia developer tools UI as a standalone package. It focuses on runtime inspection and debugging:

  • Visual and logical tree inspection.
  • Property and style inspection with live values.
  • Routed event tracking.
  • Layout exploration and renderer diagnostics overlays.

Installation

Install from NuGet:

dotnet add package ProDiagnostics

Quick start

Attach DevTools after application initialization:

public override void OnFrameworkInitializationCompleted()
{
    if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
        desktop.MainWindow = new MainWindow();

    base.OnFrameworkInitializationCompleted();
    this.AttachDevTools();
}

By default DevTools opens with F12. You can also attach to a TopLevel or provide a custom key gesture or options.

ProDiagnostics.Transport

ProDiagnostics.Transport streams metrics and activities over UDP so you can observe diagnostics out-of-process.

Installation

Install from NuGet:

dotnet add package ProDiagnostics.Transport

Quick start

Export diagnostics to the viewer:

using ProDiagnostics.Transport;

var exporter = new DiagnosticsUdpExporter(new DiagnosticsUdpOptions
{
    Host = "127.0.0.1",
    Port = TelemetryProtocol.DefaultPort,
    ActivitySourceNames = new[] { "ProDataGrid.*" },
    MeterNames = new[] { "ProDataGrid.Diagnostic.Meter" }
});

exporter.Start();

Keep the exporter alive for the lifetime of the app and dispose it during shutdown.

ProDiagnostics.Viewer

ProDiagnostics.Viewer is an Avalonia UI for live metrics and activities streamed over UDP.

Installation

Install as a global tool:

dotnet tool install -g prodiagnostics-viewer

Quick start

Run the viewer:

prodiagnostics-viewer

License

ProDataGrid is licensed under the MIT License (see licence.md).

ProDiagnostics is licensed under the MIT License (see licence.md).

The original Avalonia.Controls.DataGrid and Avalonia.Diagnostics license is preserved in licence-avalonia.md.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
11.3.9-preview.24 18 1/12/2026
11.3.9-preview.23 41 1/9/2026
11.3.9-preview.22 35 1/9/2026
11.3.9-preview.21 37 1/8/2026
11.3.9-preview.20 36 1/6/2026
11.3.9-preview.19 40 1/4/2026
11.3.9-preview.18 42 1/4/2026
11.3.9-preview.17 43 1/2/2026
11.3.9-preview.16 43 1/1/2026
11.3.9-preview.15 47 12/29/2025