WCS.Entity.Protocol.csproj 655 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="SqlSugar" Version="5.1.4.167" />
  15. </ItemGroup>
  16. </Project>