GameStateManagement.iOS.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-ios</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <Title>Game State Management</Title>
  11. <Product>Game State Management</Product>
  12. <Description>This sample shows how to manage the transitions between different menus and gameplay states.</Description>
  13. <Company>Microsoft</Company>
  14. <Copyright>Copyright © Microsoft 2007</Copyright>
  15. <Trademark></Trademark>
  16. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  20. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="../../Core/GameStateManagement.Core.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Content Include="..\..\..\CompiledContent\iOS\Content\Fonts\menufont.xnb" Link="Content\menufont.xnb">
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </Content>
  29. <Content Include="..\..\..\CompiledContent\iOS\Content\Fonts\gamefont.xnb" Link="Content\gamefont.xnb">
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </Content>
  32. <Content Include="..\..\..\CompiledContent\iOS\Content\Textures\blank.xnb" Link="Content\blank.xnb">
  33. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  34. </Content>
  35. <Content Include="..\..\..\CompiledContent\iOS\Content\Textures\background.xnb" Link="Content\background.xnb">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </Content>
  38. <Content Include="..\..\..\CompiledContent\iOS\Content\Textures\gradient.xnb" Link="Content\gradient.xnb">
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </Content>
  41. </ItemGroup>
  42. </Project>