Ips.Library.Entity.csproj 799 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <DebugType>none</DebugType>
  10. <DebugSymbols>false</DebugSymbols>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <NoWarn>1701;1702;CS1591</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <NoWarn>1701;1702;CS1591</NoWarn>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Folder Include="Properties\PublishProfiles\" />
  20. <Folder Include="Sites\" />
  21. </ItemGroup>
  22. </Project>