Ips.Library.Basic.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <AssemblyName>$(MSBuildProjectName)</AssemblyName>
  7. <RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <DebugType>none</DebugType>
  11. <DebugSymbols>false</DebugSymbols>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <NoWarn>1701;1702;CA1416;</NoWarn>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <NoWarn>1701;1702;CA1416;</NoWarn>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <None Include="Properties\PublishProfiles\FolderProfile.pubxml.user" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  24. <PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Compile Update="Properties\Resources.Designer.cs">
  28. <DesignTime>True</DesignTime>
  29. <AutoGen>True</AutoGen>
  30. <DependentUpon>Resources.resx</DependentUpon>
  31. </Compile>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <EmbeddedResource Update="Properties\Resources.resx">
  35. <Generator>ResXFileCodeGenerator</Generator>
  36. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  37. </EmbeddedResource>
  38. </ItemGroup>
  39. </Project>