source: Application/Dal/Dal.csproj@ f5f7c24

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

Initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net6.0</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.13" />
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.SqlServer" Version="7.0.2" />
18 <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
19 <PrivateAssets>all</PrivateAssets>
20 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
21 </PackageReference>
22 <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.13" />
23 <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.11" />
24 <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
25 </ItemGroup>
26
27 <ItemGroup>
28 <ProjectReference Include="..\Models\Models.csproj" />
29 </ItemGroup>
30
31 <ItemGroup>
32 <Folder Include="ApplicationStorage\Migrations\" />
33 </ItemGroup>
34
35</Project>
Note: See TracBrowser for help on using the repository browser.