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