17 lines
495 B
XML
17 lines
495 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Lokad.ILPack" Version="0.3.1" />
|
|
<PackageReference Include="Raylib-cs" Version="8.0.0" />
|
|
<PackageReference Include="SkiaSharp" Version="3.119.4" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|