mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-05 15:34:28 +01:00
25 lines
743 B
XML
25 lines
743 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>WinExe</OutputType>
|
||
|
<TargetFramework>net48</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<MonoGameContentReference Include="**\*.mgcb" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="MonoGame.Content.Builder" Version="3.7.0.9" />
|
||
|
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.8.0.13" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|