-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextcodelab.github.io.csproj
More file actions
33 lines (26 loc) · 946 Bytes
/
nextcodelab.github.io.csproj
File metadata and controls
33 lines (26 loc) · 946 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="Pages\Privacy.txt" />
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflow_backup_v3.txt" />
<Content Include=".github\workflow_backup_v4.txt" />
<Content Include="Pages\Privacy.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.7" PrivateAssets="all" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Main\" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\gh-pages.yml" />
</ItemGroup>
</Project>