-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlazorWASMSIMDDetectExample.csproj
More file actions
28 lines (23 loc) · 1.08 KB
/
BlazorWASMSIMDDetectExample.csproj
File metadata and controls
28 lines (23 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
<CompressionEnabled>false</CompressionEnabled>
<RunAOTCompilation>true</RunAOTCompilation>
<Configurations>Debug;Release;ReleaseCompat</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'ReleaseCompat' ">
<WasmEnableSIMD>false</WasmEnableSIMD>
<BlazorWebAssemblyJiterpreter>false</BlazorWebAssemblyJiterpreter>
<WasmEnableExceptionHandling>false</WasmEnableExceptionHandling>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>
</Project>