Notes/Notes.Browser/Notes.Browser.csproj

23 lines
672 B
XML

<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>
</PropertyGroup>
<ItemGroup>
<WasmExtraFilesToDeploy Include="AppBundle\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Browser" Version="$(AvaloniaVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Notes.UI\Notes.UI.csproj" />
</ItemGroup>
</Project>