monogame-moontools.ecs-temp.../MonoGameBlank2dStartKit/MonoGameBlank2dStartKit.Win.../MonoGameBlank2dStartKit.Win...

39 lines
1.9 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<RollForward>Major</RollForward>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>../MonoGameBlank2dStartKit.Core/Content/Icon.ico</ApplicationIcon>
<AssemblyName>MonoGameBlank2dStartKit</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CreatePackage>false</CreatePackage>
<DefineConstants>$(DefineConstants);DEBUG;DIRECTX</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CreatePackage>true</CreatePackage>
<DefineConstants>$(DefineConstants);DIRECTX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<MonoGameContentReference Include="..\MonoGameBlank2dStartKit.Core\Content\MonoGameBlank2dStartKit.mgcb">
<Link>Content\MonoGameBlank2dStartKit.mgcb</Link>
</MonoGameContentReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*"/>
<PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonoGameBlank2dStartKit.Core\MonoGameBlank2dStartKit.Core.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
<Message Text="Restoring dotnet tools" Importance="High"/>
<Exec Command="dotnet tool restore"/>
</Target>
</Project>