This repository was archived by the owner on Dec 2, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathWebAPI.csproj
More file actions
55 lines (45 loc) · 1.9 KB
/
WebAPI.csproj
File metadata and controls
55 lines (45 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>1</WarningLevel>
<DocumentationFile>C:\DEV\AniAPI\WebAPI\WebAPI.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Controllers\ProxyController.cs" />
</ItemGroup>
<ItemGroup>
<Content Remove="Resources\genres.1_0.json" />
<Content Remove="Resources\localizations.1_0.json" />
<Content Remove="Resources\localizations.1_1_5.json" />
</ItemGroup>
<ItemGroup>
<None Remove="favicon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\genres.1_0.json" />
<EmbeddedResource Include="Resources\localizations.1_1_5.json" />
<EmbeddedResource Include="Resources\localizations.1_0.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.Proxy" Version="4.2.0" />
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="1.1.10" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.9" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.9" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Commons\Commons.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\favicon.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\images\aniapi_icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>