Files
Progrart/Progrart.Browser/Progrart.Browser.csproj
Creeper Lv 2eb59564b4 Added Rectangle to the shapes.
Added a shortcurt "Ctrl+Shift+Space" to open menu.
2025-12-30 00:51:01 +11:00

19 lines
552 B
XML

<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
<PropertyGroup>
<TargetFramework>net10.0-browser</TargetFramework>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WasmAllowUndefinedSymbols>true</WasmAllowUndefinedSymbols>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Browser" />
<PackageReference Include="SkiaSharp.NativeAssets.WebAssembly" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Progrart\Progrart.csproj" />
</ItemGroup>
</Project>