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