-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModelManager.csproj
More file actions
35 lines (27 loc) · 985 Bytes
/
ModelManager.csproj
File metadata and controls
35 lines (27 loc) · 985 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\models\**" />
<Content Remove="wwwroot\models\**" />
<EmbeddedResource Remove="wwwroot\models\**" />
<None Remove="wwwroot\models\**" />
</ItemGroup>
<ItemGroup>
<None Remove="QuizCompiler.jar" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hangfire" Version="1.8.23" />
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="10.0.2" />
<PackageReference Include="PuppeteerSharp" Version="20.2.6" />
</ItemGroup>
<ItemGroup>
<Resource Include="QuizCompiler.jar">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>