mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
48 lines
2.2 KiB
XML
48 lines
2.2 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.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> |