Files
MonoGame.Extended/Source/Demos/Tutorials/Tutorials.csproj
T
JanFokkeandDylan Wilson c360b66535 Re-added collision demo (#642)
Improved collision performance
2019-12-26 22:20:43 +10:00

49 lines
2.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<MonoGameContentReference Include="**\*.mgcb" />
</ItemGroup>
<ItemGroup>
<None Remove="Content\Animations\motw.sf" />
<None Remove="Content\Animations\motw.spritesheet" />
<None Remove="Content\Animations\zombie-atlas.json" />
<None Remove="Content\Animations\zombie.spritesheet" />
<None Remove="Content\Content.mgcb" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\Animations\motw.sf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\Animations\motw.spritesheet">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\Animations\zombie-atlas.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\Animations\zombie.spritesheet">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.8.1" />
<PackageReference Include="MonoGame.Content.Builder" Version="3.7.0.8" />
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.7.0.7" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MonoGame.Extended.Collisions\MonoGame.Extended.Collisions.csproj" />
<ProjectReference Include="..\..\MonoGame.Extended.Content.Pipeline\MonoGame.Extended.Content.Pipeline.csproj">
<Private>true</Private>
</ProjectReference>
<ProjectReference Include="..\..\MonoGame.Extended.Gui\MonoGame.Extended.Gui.csproj" />
<ProjectReference Include="..\..\MonoGame.Extended.Input\MonoGame.Extended.Input.csproj" />
<ProjectReference Include="..\..\MonoGame.Extended.Particles\MonoGame.Extended.Particles.csproj" />
<ProjectReference Include="..\..\MonoGame.Extended.SceneGraphs\MonoGame.Extended.SceneGraphs.csproj" />
<ProjectReference Include="..\..\MonoGame.Extended\MonoGame.Extended.csproj" />
</ItemGroup>
</Project>