.net6.0 webapi demo

Net6Demo_Api.Business.csproj 493B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\Net6Demo_Api.Entity\Net6Demo_Api.Entity.csproj" />
  9. <ProjectReference Include="..\Net6Demo_Api.IBusiness\Net6Demo_Api.IBusiness.csproj" />
  10. <ProjectReference Include="..\Net6Demo_Api.Util\Net6Demo_Api.Util.csproj" />
  11. </ItemGroup>
  12. </Project>