-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLectureSystem.csproj
More file actions
45 lines (45 loc) · 2.27 KB
/
Copy pathLectureSystem.csproj
File metadata and controls
45 lines (45 loc) · 2.27 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>f7640605-0411-443b-87b1-79f97374b25c</UserSecretsId>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\20200227024002_InitialCreate.cs" />
<Compile Remove="Migrations\20200227024002_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20200229105833_ModifyFiles-AddFilePath.cs" />
<Compile Remove="Migrations\20200229105833_ModifyFiles-AddFilePath.Designer.cs" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\files\.gitignore" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="3.2.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="5.0.0" />
<PackageReference Include="Swashbuckle.Core" Version="5.6.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Pages\Lecturers\" />
<Folder Include="Pages\Courses\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\files\.gitignore" />
</ItemGroup>
</Project>