-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDotNetCoreJWTAuth.csproj
More file actions
30 lines (25 loc) · 1.61 KB
/
DotNetCoreJWTAuth.csproj
File metadata and controls
30 lines (25 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>aspnet-AspDotNetCoreWebAPI-BD2B6DA2-5332-46A5-8BDE-72EA765A0976</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DbAccess\Migrations\20200229154153_AddedProducts.cs" />
<Compile Remove="DbAccess\Migrations\20200229154153_AddedProducts.Designer.cs" />
<Compile Remove="DbAccess\Migrations\20200229160020_AddedProducts1.cs" />
<Compile Remove="DbAccess\Migrations\20200229160020_AddedProducts1.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cosmonaut" Version="2.11.3" />
<PackageReference Include="Cosmonaut.Extensions.Microsoft.DependencyInjection" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0" />
</ItemGroup>
</Project>