This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBones.WebUI.csproj
More file actions
35 lines (27 loc) · 1.59 KB
/
Copy pathBones.WebUI.csproj
File metadata and controls
35 lines (27 loc) · 1.59 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<PublishTrimmed>false</PublishTrimmed>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
<!-- Recommended for mobile browsers: https://learn.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-8.0#decrease-maximum-heap-size-for-some-mobile-device-browsers -->
<EmccMaximumHeapSize>268435456</EmccMaximumHeapSize>
</PropertyGroup>
<ItemGroup Condition="$(Configuration) == 'Debug'">
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.7" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.7" />
<PackageReference Include="MudBlazor" Version="9.4.0" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="9.1.0" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot/service-worker.js" PublishedContent="wwwroot/service-worker.published.js" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Core/Bones.Api.Client/Bones.Api.Client.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.WebAssembly.Pack" Version="10.0.7" />
<Content Remove="wwwroot/appsettings.Development.json" Condition="$(Configuration) == 'Release'" />
</ItemGroup>
</Project>