-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent-plus.csproj
50 lines (47 loc) · 2.14 KB
/
Student-plus.csproj
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
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Student_plus</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.2" />
<PackageReference Include="Microsoft.Data.SQLite" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.2" />
</ItemGroup>
<ItemGroup>
<None Remove="Controllers\" />
<None Remove="DTOs\" />
<None Remove="Services\" />
<None Remove="Enums\" />
<None Remove="Interfaces\" />
<None Remove="Interfaces\IUserAccount" />
<None Remove="Student-plus.csproj" />
<None Remove="Student-plus.sln" />
<None Remove="Newtonsoft.Json" />
<None Remove="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="DTOs\" />
<Folder Include="Services\" />
<Folder Include="Enums\" />
<Folder Include="Interfaces\" />
<Folder Include="mainDb.db" />
</ItemGroup>
<ItemGroup>
<Compile Include="Interfaces\IUserAccount.cs" Condition=" '$(EnableDefaultCompileItems)' == 'false' " />
</ItemGroup>
</Project>