Infrastructure.csproj 480 B

12345678910111213141516171819
  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. <Compile Remove="Interfaces\**" />
  9. <EmbeddedResource Remove="Interfaces\**" />
  10. <None Remove="Interfaces\**" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="7.0.1" />
  14. </ItemGroup>
  15. </Project>