WCS.WebApi.csproj 763 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <Description>WMS接口调用及WCS开放的接口</Description>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
  9. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.8" />
  10. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\WCS.Core\WCS.Core.csproj" />
  14. <ProjectReference Include="..\WCS.Entity.Protocol\WCS.Entity.Protocol.csproj" />
  15. <ProjectReference Include="..\WCS.Entity\WCS.Entity.csproj" />
  16. </ItemGroup>
  17. </Project>