Infrastructure.csproj 1.1 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.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" Version="9.0.0" />
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="9.0.0" />
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.0" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
  19. <PrivateAssets>all</PrivateAssets>
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. </PackageReference>
  22. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  23. </ItemGroup>
  24. </Project>