Biwen.QuickApi.MiniProfiler
2.0.0
dotnet add package Biwen.QuickApi.MiniProfiler --version 2.0.0
NuGet\Install-Package Biwen.QuickApi.MiniProfiler -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="Biwen.QuickApi.MiniProfiler" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Biwen.QuickApi.MiniProfiler --version 2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Biwen.QuickApi.MiniProfiler, 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 Biwen.QuickApi.MiniProfiler as a Cake Addin #addin nuget:?package=Biwen.QuickApi.MiniProfiler&version=2.0.0 // Install Biwen.QuickApi.MiniProfiler as a Cake Tool #tool nuget:?package=Biwen.QuickApi.MiniProfiler&version=2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
使用方式:
Blazor视图中使用:
请注意,模块是否注册需要判断 IOptions<WrapMiniProfilerOptions>
的Enabled
属性.
@using Microsoft.Extensions.Options
@using StackExchange.Profiling
@inject IOptions<MiniProfilerOptions> Options
@inject IOptions<WrapMiniProfilerOptions> WrapOptions
@if (WrapOptions.Value.Enabled)
{
<div class="footer">
@{
var html = MiniProfiler.Current?.RenderIncludes(HttpContextAccessor.HttpContext!, Options.Value.PopupRenderPosition);
}
@((MarkupString)html?.Value!)
</div>
}
MVC视图中使用:
@using StackExchange.Profiling
@addTagHelper *, MiniProfiler.AspNetCore.Mvc
@inject IOptions<WrapMiniProfilerOptions> WrapOptions
@if(WrapOptions.Value.Enabled)
{
<mini-profiler />
}
配置Profiler
MiniProfiler:Enabled
表示是否启用MiniProfiler,MiniProfiler:PopupRenderPosition
表示MiniProfiler的位置.
其他配置项请参考MiniProfiler的配置项.
{
"$schema": "../quickapi-schema.json",
"BiwenQuickApi": {
"QuickApi": {
"RoutePrefix": "quick",
"EnableAntiForgeryTokens": true,
"EnablePubSub": true,
"EnableScheduling": true,
"UseQuickApiExceptionResultBuilder": true
},
"MiniProfiler": {
"Enabled": true,
"PopupRenderPosition": "BottomLeft",
"PopupShowTrivial": true
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Biwen.QuickApi (>= 2.0.0)
- MiniProfiler.AspNetCore.Mvc (>= 4.3.8)
- MiniProfiler.EntityFrameworkCore (>= 4.3.8)
- System.Text.RegularExpressions (>= 4.3.1)
-
net9.0
- Biwen.QuickApi (>= 2.0.0)
- MiniProfiler.AspNetCore.Mvc (>= 4.3.8)
- MiniProfiler.EntityFrameworkCore (>= 4.3.8)
- System.Text.RegularExpressions (>= 4.3.1)
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 | 39 | 11/13/2024 |