This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Semicolon.OnlineJudge.csproj
70 lines (63 loc) · 3.86 KB
/
Semicolon.OnlineJudge.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="EvaluationMachine\**" />
<Content Remove="EvaluationMachine\**" />
<EmbeddedResource Remove="EvaluationMachine\**" />
<None Remove="EvaluationMachine\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Migrations\20191214141138_InitProblemsDb.cs" />
<Compile Remove="Migrations\20191214141138_InitProblemsDb.Designer.cs" />
<Compile Remove="Migrations\20191214142040_InitUserDb.cs" />
<Compile Remove="Migrations\20191214142040_InitUserDb.Designer.cs" />
<Compile Remove="Migrations\20191214152122_AddEmailToUserDb.cs" />
<Compile Remove="Migrations\20191214152122_AddEmailToUserDb.Designer.cs" />
<Compile Remove="Migrations\20191215061033_UpdateProblemstDb.cs" />
<Compile Remove="Migrations\20191215061033_UpdateProblemstDb.Designer.cs" />
<Compile Remove="Migrations\20191215061215_InitProblemAndUserDb.cs" />
<Compile Remove="Migrations\20191215061215_InitProblemAndUserDb.Designer.cs" />
<Compile Remove="Migrations\20191218144817_InitTrackDb.cs" />
<Compile Remove="Migrations\20191218144817_InitTrackDb.Designer.cs" />
<Compile Remove="Migrations\20191218153659_InitTrackDb.cs" />
<Compile Remove="Migrations\20191218153659_InitTrackDb.Designer.cs" />
<Compile Remove="Migrations\20191229061848_AddMoreCompilerOptions.cs" />
<Compile Remove="Migrations\20191229061848_AddMoreCompilerOptions.Designer.cs" />
<Compile Remove="Migrations\20200211144023_IntgrateAuthentication.cs" />
<Compile Remove="Migrations\20200211144023_IntgrateAuthentication.Designer.cs" />
<Compile Remove="Migrations\20200212021719_MigrateToSqlServer.cs" />
<Compile Remove="Migrations\20200212021719_MigrateToSqlServer.Designer.cs" />
<Compile Remove="Migrations\20200212022004_MigrateToSqlServer.cs" />
<Compile Remove="Migrations\20200212022004_MigrateToSqlServer.Designer.cs" />
<Compile Remove="Migrations\20200214015308_Release.cs" />
<Compile Remove="Migrations\20200214015308_Release.Designer.cs" />
<Compile Remove="Migrations\20200214015407_Release.cs" />
<Compile Remove="Migrations\20200214015407_Release.Designer.cs" />
<Compile Remove="Migrations\20200215090847_Release001.cs" />
<Compile Remove="Migrations\20200215090847_Release001.Designer.cs" />
<Compile Remove="Migrations\20200216031003_UpdateProblem.cs" />
<Compile Remove="Migrations\20200216031003_UpdateProblem.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ChartJSCore" Version="1.5.8" />
<PackageReference Include="Markdig" Version="0.26.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.0" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
</ItemGroup>
</Project>