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

19 lines
526 B
XML
Raw Normal View History

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>
2026-02-15 19:19:46 +11:00
<WasmBuildNative>true</WasmBuildNative>
2025-12-30 00:51:01 +11:00
</PropertyGroup>
2025-12-14 00:25:51 +11:00
2025-12-30 00:51:01 +11:00
<ItemGroup>
<PackageReference Include="Avalonia.Browser" />
</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>