2024-09-30 17:10:43 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
2024-10-26 22:27:19 +08:00
|
|
|
|
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
|
|
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
</PropertyGroup>
|
2024-09-30 17:10:43 +08:00
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="appsettings.json" />
|
|
|
|
|
|
</ItemGroup>
|
2024-10-08 14:41:41 +08:00
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2024-10-08 14:41:41 +08:00
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.10" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
|
2024-10-22 20:57:26 +08:00
|
|
|
|
</ItemGroup>
|
2024-09-30 17:10:43 +08:00
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.ClickHouse\JiShe.CollectBus.ClickHouse.csproj" />
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.Common\JiShe.CollectBus.Common.csproj" />
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.Core\JiShe.CollectBus.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.EntityFrameworkCore\JiShe.CollectBus.EntityFrameworkCore.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.Protocol.Contracts\JiShe.CollectBus.Protocol.Contracts.csproj" />
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<ProjectReference Include="..\JiShe.CollectBus.RabbitMQ\JiShe.CollectBus.RabbitMQ.csproj" />
|
2024-10-22 20:57:26 +08:00
|
|
|
|
</ItemGroup>
|
2024-09-30 17:10:43 +08:00
|
|
|
|
|
2024-10-22 20:57:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Plugins\JiShe.CollectBus.Protocol.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Plugins\JiShe.CollectBus.Protocol.Test.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2024-10-08 14:41:41 +08:00
|
|
|
|
|
2024-09-30 17:10:43 +08:00
|
|
|
|
</Project>
|