mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
51 lines
2.4 KiB
XML
51 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<ApplicationIcon>Icon.ico</ApplicationIcon>
|
|
<StartupObject />
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
<TieredCompilation>false</TieredCompilation>
|
|
</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="5.2.0" />
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.0.1375-develop" />
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1375-develop" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
</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> |