-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutMe.csproj
32 lines (27 loc) · 1.12 KB
/
AboutMe.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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\font\**" />
<Compile Remove="wwwroot\NewFolder\**" />
<Content Remove="wwwroot\font\**" />
<Content Remove="wwwroot\NewFolder\**" />
<EmbeddedResource Remove="wwwroot\font\**" />
<EmbeddedResource Remove="wwwroot\NewFolder\**" />
<None Remove="wwwroot\font\**" />
<None Remove="wwwroot\NewFolder\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.3" PrivateAssets="all" />
<PackageReference Include="Radzen.Blazor" Version="3.12.1" />
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\favicon.ico">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>