forked from pajakwsei/Lab-2AD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibApp.csproj
22 lines (18 loc) · 876 Bytes
/
LibApp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-LibApp-24f49418-7f74-4623-8bae-162037219819</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.19" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.19" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.19" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.19" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.19" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\Shared\Partials\" />
</ItemGroup>
</Project>