OrderSystem.IServices.csproj 595 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <RootNamespace>OrderSystem.Services</RootNamespace>
  5. <Configurations>Debug;Release</Configurations>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\OrderSystem.Entity\OrderSystem.Entity.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Reference Include="Bowin.Common">
  15. <HintPath>..\Lib\Bowin.Common.dll</HintPath>
  16. </Reference>
  17. </ItemGroup>
  18. </Project>