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="bootstrap" Version="5.2.3" />
|
---|
11 | <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
|
---|
12 | <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.13" />
|
---|
13 | <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.13" />
|
---|
14 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
|
---|
15 | <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.2">
|
---|
16 | <PrivateAssets>all</PrivateAssets>
|
---|
17 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
---|
18 | </PackageReference>
|
---|
19 | <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
|
---|
20 | <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.2" />
|
---|
21 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
|
---|
22 | <PrivateAssets>all</PrivateAssets>
|
---|
23 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
---|
24 | </PackageReference>
|
---|
25 | <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.11" />
|
---|
26 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
|
---|
27 | </ItemGroup>
|
---|
28 |
|
---|
29 | <ItemGroup>
|
---|
30 | <ProjectReference Include="..\Dal\Dal.csproj" />
|
---|
31 | <ProjectReference Include="..\Models\Models.csproj" />
|
---|
32 | </ItemGroup>
|
---|
33 |
|
---|
34 | </Project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.