2024-02-14 23:32:20 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2024-02-27 13:47:37 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-02-14 23:32:20 +01:00
|
|
|
|
<RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
|
|
|
|
|
<WasmMainJSPath>AppBundle\main.js</WasmMainJSPath>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<WasmExtraFilesToDeploy Include="AppBundle\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-18 21:51:15 +01:00
|
|
|
|
<PackageReference Include="Avalonia.Browser" Version="11.0.9" />
|
2024-02-14 23:32:20 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Borepin\Borepin.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|