1234567891011121314151617 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>.net6</TargetFramework>
- <Nullable>enable</Nullable>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <Description>调度程序的业务逻辑</Description>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\WCS.Core\WCS.Core.csproj" />
- <ProjectReference Include="..\WCS.Entity.Protocol\WCS.Entity.Protocol.csproj" />
- <ProjectReference Include="..\WCS.Entity\WCS.Entity.csproj" />
- <ProjectReference Include="..\WCS.WebApi\WCS.WebApi.csproj" />
- </ItemGroup>
- </Project>
|