mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
- 修复 RequestStartupBenchmarks 的 baseline 分组、初始化阶段对齐与 MediatR 重复注册问题 - 新增共享 dispatcher cache helper,并统一 benchmark 宿主的 MediatR logging/license 过滤配置 - 更新 cqrs-rewrite 跟踪与 trace,记录 PR #326 锚点、验证去重和 startup benchmark 的残留运行风险
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<!--
|
|
Copyright (c) 2025-2026 GeWuYou
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
|
|
<PackageReference Include="MediatR" Version="13.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.7" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Cqrs.Abstractions\GFramework.Cqrs.Abstractions.csproj" />
|
|
<ProjectReference Include="..\GFramework.Cqrs\GFramework.Cqrs.csproj" />
|
|
<ProjectReference Include="..\GFramework.Core.Abstractions\GFramework.Core.Abstractions.csproj" />
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|