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.

35 lines
1.3 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</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="System.Text.Json" Version="5.0.2" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\..\Newtonsoft.Json\Src\Newtonsoft.Json\Newtonsoft.Json.csproj" />
  33. </ItemGroup>
  34. <Import Project="..\Shared\Shared.projitems" Label="Shared" />
  35. </Project>