| 123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.3.10" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.27">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.27">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.23" />
- </ItemGroup>
- </Project>
|