-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp2fk.io.csproj
47 lines (40 loc) · 1.33 KB
/
p2fk.io.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<Compile Remove="root\**" />
<Content Remove="root\**" />
<EmbeddedResource Remove="root\**" />
<None Remove="root\**" />
</ItemGroup>
<ItemGroup>
<None Remove="ROOTS-PROCESSING" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\apple-touch-icon.png" />
<None Include="wwwroot\favicon-16x16.png" />
<None Include="wwwroot\favicon-32x32.png" />
<None Include="wwwroot\HugPuddle.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\apple-touch-icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\favicon-16x16.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\favicon-32x32.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\HugPuddle.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>