-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.Library.csproj
More file actions
38 lines (34 loc) · 1.43 KB
/
Client.Library.csproj
File metadata and controls
38 lines (34 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OverrideHtmlAssetPlaceholders>true</OverrideHtmlAssetPlaceholders>
<Nullable>enable</Nullable>
<WasmBundlerFriendlyBootConfig>true</WasmBundlerFriendlyBootConfig>
<WasmFingerprintAssets>false</WasmFingerprintAssets>
<CompressionEnabled>false</CompressionEnabled>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<WasmEnableHotReload>false</WasmEnableHotReload>
</PropertyGroup>
<ItemGroup>
<StaticWebAssetFingerprintPattern Include="JS" Pattern="*.js" Expression="#[.{fingerprint}]!" />
</ItemGroup>
<PropertyGroup>
<OutputPath>../@client/wasm-exports/lib</OutputPath>
<!--<TypeShim_GeneratedDir>../../../TypeShim</TypeShim_GeneratedDir>-->
<!--<TypeShim_TypeScriptOutputDirectory>wwwroot</TypeShim_TypeScriptOutputDirectory>-->
<!--<TypeShim_MSBuildMessagePriority>High</TypeShim_MSBuildMessagePriority>-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="TypeShim" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\_framework\" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\_framework\dotnet.d.ts">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>