2023-12-04 15:49:31 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
|
|
|
|
|
<WasmMainJSPath>AppBundle\main.js</WasmMainJSPath>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-12-05 20:11:38 +08:00
|
|
|
|
<WasmAllowUndefinedSymbols>true</WasmAllowUndefinedSymbols>
|
|
|
|
|
<MSBuildDebugEngine>1</MSBuildDebugEngine>
|
|
|
|
|
<WasmBuildNative>true</WasmBuildNative>
|
2023-12-04 15:49:31 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<WasmExtraFilesToDeploy Include="AppBundle\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia.Browser" Version="$(AvaloniaVersion)" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-12-06 11:03:26 +08:00
|
|
|
|
<ProjectReference Include="..\Notes.UI\Notes.UI.csproj" />
|
2023-12-04 15:49:31 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|