mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
* Demo.SpaceGame working * Delete unused files, update icon * Demo.StarWarrior building * Removed unused files * Demo.Features Collision * Platform Demo Building * Nuclex Gui Project * got the old platformer demo running but it's still missing stuff * Demo.Features added to solution * Demo.Features building Currently, most demos don't build and were excluded from the project. * Demo.Features.NetCore building * Demo.Features building and running * First demo usable * Close button * Tiles + Sprite Demo * More demos working * Fix Back() for new Gui * Remove old project files
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>craftworkgames</Authors>
|
|
<Description>Content Pipeline importers and processors to make MonoGame more awesome.</Description>
|
|
<PackageTags>monogame content importer processor reader tiled texturepacker bmfont animations</PackageTags>
|
|
<PackageProjectUrl>https://github.com/craftworkgames/MonoGame.Extended</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/craftworkgames/MonoGame.Extended</RepositoryUrl>
|
|
<PackageLicenseUrl>https://github.com/craftworkgames/MonoGame.Extended/blob/master/LICENSE</PackageLicenseUrl>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/craftworkgames/MonoGame.Extended/master/Logos/logo-nuget-128.png</PackageIconUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>NU1701</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MonoGame.Framework.Content.Pipeline.Portable" Version="3.6.0.1625" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MonoGame.Extended.Tiled\MonoGame.Extended.Tiled.csproj" />
|
|
<ProjectReference Include="..\MonoGame.Extended\MonoGame.Extended.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Newtonsoft.Json.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |