-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppMVCBasic.csproj
More file actions
18 lines (15 loc) · 872 Bytes
/
AppMVCBasic.csproj
File metadata and controls
18 lines (15 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-AppMVCBasic-3f0f1b2d-1b54-4ee1-9fb0-8b57f25d1f3c</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.15" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.13" />
</ItemGroup>
</Project>