Files
Progrart/Progrart.Browser/Progrart.Browser.csproj

20 lines
594 B
XML
Raw Normal View History

2025-12-14 00:25:51 +11:00
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
<PropertyGroup>
<TargetFramework>net10.0-browser</TargetFramework>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WasmAllowUndefinedSymbols>true</WasmAllowUndefinedSymbols>
<Nullable>enable</Nullable>
2026-02-15 19:19:46 +11:00
<WasmBuildNative>true</WasmBuildNative>
</PropertyGroup>
2025-12-14 00:25:51 +11:00
<ItemGroup>
<PackageReference Include="Avalonia.Browser" />
<PackageReference Include="SkiaSharp.NativeAssets.WebAssembly" />
</ItemGroup>
2025-12-14 00:25:51 +11:00
<ItemGroup>
<ProjectReference Include="..\Progrart\Progrart.csproj" />
</ItemGroup>
2025-12-14 00:25:51 +11:00
</Project>