mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-09 01:54:30 +08:00
- 优化 dispatcher 在零 pipeline 场景下跳过空行为解析,减少请求热路径分配 - 修复 MicrosoftDiContainer 热路径的无效 debug 字符串构造,并新增非激活注册检测回归测试 - 新增基于 NuGet 的 Mediator 对照基准并更新 CQRS 重写跟踪文档
39 lines
1.6 KiB
XML
39 lines
1.6 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>
|
|
<!-- Keep benchmark infrastructure out of the published NuGet package set. -->
|
|
<IsPackable>false</IsPackable>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
|
|
<PackageReference Include="Mediator.Abstractions" Version="3.0.2" />
|
|
<PackageReference Include="Mediator.SourceGenerator" Version="3.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="MediatR" Version="13.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.7" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.7" />
|
|
</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>
|