Files
ParsonsMasterSystem2026/Parsons.Steamdeck/Parsons.Steamdeck.csproj
2026-06-04 22:01:45 +01:00

27 lines
627 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OptimizationPreference>Size</OptimizationPreference>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="ROMS\**\*.sms" />
<EmbeddedResource Include="ROMS\**\*.gg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Raylib-cs" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>