BenMakesGames.MiniProfilerForBlazor 2.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package BenMakesGames.MiniProfilerForBlazor --version 2.0.0
NuGet\Install-Package BenMakesGames.MiniProfilerForBlazor -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BenMakesGames.MiniProfilerForBlazor" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BenMakesGames.MiniProfilerForBlazor --version 2.0.0
#r "nuget: BenMakesGames.MiniProfilerForBlazor, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BenMakesGames.MiniProfilerForBlazor as a Cake Addin
#addin nuget:?package=BenMakesGames.MiniProfilerForBlazor&version=2.0.0

// Install BenMakesGames.MiniProfilerForBlazor as a Cake Tool
#tool nuget:?package=BenMakesGames.MiniProfilerForBlazor&version=2.0.0

What is This?

BenMakesGames.MiniProfilerForBlazor adds a service & component for displaying MiniProfiler results on a Blazor WebAssembly front-end.

Buy Me a Coffee at ko-fi.com

Installation & Configuration

API Back-end Project

Install MiniProfiler in API Project

Install & configure MiniProfiler: https://miniprofiler.com/dotnet/AspDotNetCore

  • DON'T follow instructions for setting up .cshtml files; these do not apply to a Blazor WebAssembly project

Validate Installation

  1. Run the project, and view the website in your browser of choice
  2. In the browser's developer tools, view the details for any XHR request
  3. Verify that the response headers contains an x-miniprofiler-ids header
    • If the x-miniprofiler-ids header is not present, MiniProfiler has not been configured, and MiniProfilerForBlazor will not work

WebAssembly Front-end Project

Install this Package

Add BenMakesGames.MiniProfilerForBlazor to your Blazor WebAssembly project.

Register Service

In your WebAssembly's Program.cs:

services.AddMiniProfilerForBlazor();

Register Handler

Refit Client
services.AddRefitClient<...>() // <-- your refit client registration
    .AddMiniProfilerHandler(); // <-- add this
Standard HttpClient
services.AddHttpClient<...>() // <-- your http client registration
    .AddMiniProfilerHandler(); // <-- add this

Add MiniProfiler to UI

In your App.razor, main layout, or wherever you want MiniProfiler to appear, add:

@using BenMakesGames.MiniProfilerForBlazor.Components // or add this to your _Imports.razor; up to you

...

<MiniProfiler />
Component Options
  • int ZIndex z-index to display the MiniProfiler button & panel; defaults to 9999
    • Example: <MiniProfiler ZIndex="39" />
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 214 4/16/2023
1.1.0 149 4/16/2023
1.0.0 212 8/9/2022