-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPearlCalculatorBlazor.csproj
48 lines (40 loc) · 1.82 KB
/
PearlCalculatorBlazor.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
48
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
</PropertyGroup>
<ItemGroup>
<Compile Remove="PearlCalculatorLib\**"/>
<Compile Remove="wwwroot\resources\**"/>
<Content Remove="PearlCalculatorLib\**"/>
<Content Remove="wwwroot\resources\**"/>
<EmbeddedResource Remove="PearlCalculatorLib\**"/>
<EmbeddedResource Remove="wwwroot\resources\**"/>
<None Remove="PearlCalculatorLib\**"/>
<None Remove="wwwroot\resources\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AntDesign" Version="0.20.2.1"/>
<PackageReference Include="AntDesign.Charts" Version="0.5.5"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.33"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.33" PrivateAssets="all"/>
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="System.Net.Http.Json" Version="6.0.1"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include=".\PearlCalculatorLib\PearlCalculatorLib.csproj"/>
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js"/>
</ItemGroup>
<ItemGroup>
<Folder Include="Localizer\"/>
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties/>
</VisualStudio>
</ProjectExtensions>
</Project>