Notes/Notes.Browser/Notes.Browser.csproj

24 lines
712 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<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\Notes.csproj" />
</ItemGroup>
</Project>