Added Rectangle to the shapes.

Added a shortcurt "Ctrl+Shift+Space" to open menu.
This commit is contained in:
Creeper Lv
2025-12-30 00:51:01 +11:00
parent 25efa1127f
commit 2eb59564b4
12 changed files with 275 additions and 111 deletions

View File

@@ -1,18 +1,18 @@
<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>
<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>
<PackageReference Include="Avalonia.Browser" />
<PackageReference Include="SkiaSharp.NativeAssets.WebAssembly" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Progrart\Progrart.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Progrart\Progrart.csproj" />
</ItemGroup>
</Project>