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

28 lines
1020 B
XML
Raw Permalink 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" />
2024-12-19 16:07:07 +08:00
<PackageReference Include="Volo.Abp.Core" Version="8.3.3" />
2024-10-25 19:11:43 +08:00
</ItemGroup>
2024-09-30 17:10:43 +08:00
2024-10-25 19:11:43 +08:00
<ItemGroup>
2025-04-17 20:28:50 +08:00
<ProjectReference Include="..\..\services\JiShe.CollectBus.Domain\JiShe.CollectBus.Domain.csproj" />
<ProjectReference Include="..\..\shared\JiShe.CollectBus.Common\JiShe.CollectBus.Common.csproj" />
<ProjectReference Include="..\..\protocols\JiShe.CollectBus.Protocol.Contracts\JiShe.CollectBus.Protocol.Contracts.csproj" />
2024-10-25 19:11:43 +08:00
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2025-04-17 20:28:50 +08:00
<Exec Command="copy $(TargetDir)JiShe.CollectBus.Protocol.dll $(ProjectDir)..\..\web\JiShe.CollectBus.Host\Plugins\" />
2024-10-25 19:11:43 +08:00
</Target>
2024-10-08 14:41:41 +08:00
2024-09-30 17:10:43 +08:00
</Project>