1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <RootNamespace>OrderSystem.Services</RootNamespace>
- <Configurations>Debug;Release</Configurations>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\OrderSystem.Entity\OrderSystem.Entity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Bowin.Common">
- <HintPath>..\Lib\Bowin.Common.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|