Plugin.Maui.Performance.Cli
1.0.7
dotnet tool install --global Plugin.Maui.Performance.Cli --version 1.0.7
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local Plugin.Maui.Performance.Cli --version 1.0.7
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Plugin.Maui.Performance.Cli&version=1.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package Plugin.Maui.Performance.Cli --version 1.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
maui-perf
A small dotnet tool that wraps maui profile with shorter commands.
dotnet tool install -g Plugin.Maui.Performance.Cli
maui-perf startup -f android
maui-perf screen -f ios --format speedscope --duration 30s
startup always passes the official stopping events so the trace ends when MauiProfile.StartupComplete() (or first frame) fires:
--stopping-event-provider-name Microsoft.Maui.ProfilingHelper
--stopping-event-event-name StartupComplete
Pair it with Plugin.Maui.Performance in the app:
builder.UseMauiPerformance(options =>
{
options.CliProfile.CompleteOn = CliProfileCompleteOn.FirstFrame;
});
maui profile supports Android and iOS simulator only. Install the MAUI CLI so the maui command is on your PATH.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 |
|---|---|---|
| 1.0.7 | 91 | 9/10/2026 |
Add maui-perf: wrap maui profile startup/manual with android/ios aliases, 30s durations, and StartupComplete stopping events.