mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 14:51:43 +01:00
21 lines
549 B
XML
21 lines
549 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
|
|
<WasmMainJSPath>AppBundle\main.js</WasmMainJSPath>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<WasmExtraFilesToDeploy Include="AppBundle\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia.Browser" Version="11.0.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Borepin\Borepin.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|