source: Application/ocrent/ocrent - Backup.csproj

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net6.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.2" />
11 <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
12 <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.2">
13 <PrivateAssets>all</PrivateAssets>
14 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15 </PackageReference>
16 <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
17 <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
18 <PrivateAssets>all</PrivateAssets>
19 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20 </PackageReference>
21 <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
22 </ItemGroup>
23
24</Project>
Note: See TracBrowser for help on using the repository browser.