| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="Interfaces\**" />
- <EmbeddedResource Remove="Interfaces\**" />
- <None Remove="Interfaces\**" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="9.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
- </ItemGroup>
- </Project>
|