45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<OutputType>Exe</OutputType>
|
||
<TargetFramework>net9.0</TargetFramework>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<Nullable>enable</Nullable>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<Content Include="appsettings.json">
|
||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
</Content>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="BenchmarkDotNet"/>
|
||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
||
<PackageReference Include="Serilog" />
|
||
<PackageReference Include="Serilog.Extensions.Logging" />
|
||
<PackageReference Include="Serilog.Settings.Configuration" />
|
||
<PackageReference Include="Serilog.Sinks.Console" />
|
||
<PackageReference Include="Serilog.Sinks.File" />
|
||
<PackageReference Include="Volo.Abp.Core"/>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\..\services\JiShe.CollectBus.Domain\JiShe.CollectBus.Domain.csproj" />
|
||
<ProjectReference Include="..\JiShe.CollectBus.Kafka\JiShe.CollectBus.Kafka.csproj" />
|
||
</ItemGroup>
|
||
|
||
<!--注意:基准测试需要引用dll测试-->
|
||
<!--<ItemGroup>
|
||
<Reference Include="JiShe.CollectBus.Common">
|
||
<HintPath>Lib\JiShe.CollectBus.Common.dll</HintPath>
|
||
</Reference>
|
||
<Reference Include="JiShe.CollectBus.Kafka">
|
||
<HintPath>Lib\JiShe.CollectBus.Kafka.dll</HintPath>
|
||
</Reference>
|
||
</ItemGroup>-->
|
||
|
||
</Project>
|