18 lines
534 B
XML
18 lines
534 B
XML
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-browser</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia.Browser" />
|
|
<PackageReference Include="SkiaSharp.NativeAssets.WebAssembly" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CritterFolio\CritterFolio.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|