-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathBootsharp.props
More file actions
44 lines (38 loc) · 2.17 KB
/
Bootsharp.props
File metadata and controls
44 lines (38 loc) · 2.17 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
36
37
38
39
40
41
42
43
44
<Project>
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetArchitecture>wasm</TargetArchitecture>
<TargetOS>browser</TargetOS>
<InvariantTimezone>true</InvariantTimezone>
<InvariantGlobalization>true</InvariantGlobalization>
<WasmGenerateAppBundle>true</WasmGenerateAppBundle>
<WasmEnableLegacyJsInterop>false</WasmEnableLegacyJsInterop>
<WasmEnableSIMD>true</WasmEnableSIMD>
<!-- Name of the generated JavaScript module; 'bootsharp' by default. -->
<BootsharpName>bootsharp</BootsharpName>
<!-- Whether to embed binaries to the JavaScript module file (true or false); true by default. -->
<BootsharpEmbedBinaries>true</BootsharpEmbedBinaries>
<!-- Whether to disable some .NET features to reduce binary size (true or false); false by default. -->
<BootsharpAggressiveTrimming>false</BootsharpAggressiveTrimming>
<!-- Whether to optimize the WASM for speed or size (requires Binaryen's wasm-opt in system path); disabled by default. -->
<BootsharpOptimize>none</BootsharpOptimize>
<!-- Whether to app is built with the new experimental NativeAOT-LLVM backend; false by default. -->
<BootsharpLLVM>false</BootsharpLLVM>
<!-- The command to run when compiling/bundling generated JavaScrip solution. -->
<BootsharpBundleCommand/>
<!-- Directory to publish generated JavaScript module; 'base-output/module-name' by default. -->
<BootsharpPublishDirectory/>
<!-- Directory to publish type declarations; 'publish-dir/types' by default. -->
<BootsharpTypesDirectory/>
<!-- Directory to publish binaries when 'EmbedBinaries' disabled; 'publish-dir/bin' by default. -->
<BootsharpBinariesDirectory/>
<!-- Directory to publish 'package.json' file; same as publish directory by default. -->
<BootsharpPackageDirectory/>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.Versioning.SupportedOSPlatform">
<_Parameter1>browser</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>