Notes/Notes.Browser/Notes.Browser.csproj

23 lines
672 B
XML
Raw Normal View History

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>
<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>