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

24 lines
813 B
XML
Raw Normal View History

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