JiShe.CollectBus/JiShe.CollectBus.Protocol/JiShe.CollectBus.Protocol.csproj

27 lines
922 B
XML
Raw Normal View History

2024-09-30 17:10:43 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2024-10-25 19:11:43 +08:00
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath></BaseOutputPath>
<LangVersion>preview</LangVersion>
2024-09-30 17:10:43 +08:00
2024-10-25 19:11:43 +08:00
</PropertyGroup>
2024-10-08 14:41:41 +08:00
2024-10-25 19:11:43 +08:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
</ItemGroup>
2024-09-30 17:10:43 +08:00
2024-10-25 19:11:43 +08:00
<ItemGroup>
<ProjectReference Include="..\JiShe.CollectBus.Common\JiShe.CollectBus.Common.csproj" />
<ProjectReference Include="..\JiShe.CollectBus.Protocol.Contracts\JiShe.CollectBus.Protocol.Contracts.csproj" />
<ProjectReference Include="..\JiShe.CollectBus.RabbitMQ\JiShe.CollectBus.RabbitMQ.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy $(TargetDir)JiShe.CollectBus.Protocol.dll $(ProjectDir)..\JiShe.CollectBus.Console\Plugins\" />
</Target>
2024-10-08 14:41:41 +08:00
2024-09-30 17:10:43 +08:00
</Project>