A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.2 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <PublishReadyToRun>false</PublishReadyToRun>
  6. <TieredCompilation>false</TieredCompilation>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <ApplicationManifest>app.manifest</ApplicationManifest>
  10. <ApplicationIcon>Icon.ico</ApplicationIcon>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="Icon.ico" />
  14. <None Remove="Icon.bmp" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <EmbeddedResource Include="Icon.ico" />
  18. <EmbeddedResource Include="Icon.bmp" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <MonoGameContentReference Include="..\Content\Content.mgcb" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <TrimmerRootAssembly Include="Microsoft.Xna.Framework.Content.ContentTypeReader" Visible="false" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
  28. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.0.1641" />
  29. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  30. <PackageReference Include="System.Text.Json" Version="5.0.2" />
  31. </ItemGroup>
  32. <Import Project="..\Shared\Shared.projitems" Label="Shared" />
  33. </Project>