MonoGame.Samples.TouchGesture.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{58763B1D-A43F-4D2B-9279-DBA505C18B32}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>TouchGesture</RootNamespace>
  12. <AssemblyName>TouchGesture</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
  19. <DefineConstants>DEBUG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>false</ConsolePause>
  23. <MtouchLink>None</MtouchLink>
  24. <MtouchDebug>true</MtouchDebug>
  25. <MtouchI18n />
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  28. <DebugType>none</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <ConsolePause>false</ConsolePause>
  34. <MtouchLink>None</MtouchLink>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\iPhone\Debug</OutputPath>
  41. <DefineConstants>DEBUG</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>4</WarningLevel>
  44. <ConsolePause>false</ConsolePause>
  45. <CodesignKey>iPhone Developer</CodesignKey>
  46. <MtouchDebug>true</MtouchDebug>
  47. <MtouchI18n />
  48. </PropertyGroup>
  49. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  50. <DebugType>none</DebugType>
  51. <Optimize>false</Optimize>
  52. <OutputPath>bin\iPhone\Release</OutputPath>
  53. <ErrorReport>prompt</ErrorReport>
  54. <WarningLevel>4</WarningLevel>
  55. <ConsolePause>false</ConsolePause>
  56. <CodesignKey>iPhone Developer</CodesignKey>
  57. <MtouchI18n />
  58. </PropertyGroup>
  59. <ItemGroup>
  60. <Reference Include="System" />
  61. <Reference Include="System.Xml" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="monotouch" />
  64. <Reference Include="OpenTK" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Program.cs" />
  68. <Compile Include="Game1.cs" />
  69. <Compile Include="Sprite.cs" />
  70. </ItemGroup>
  71. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  72. <ItemGroup>
  73. <ProjectReference Include="..\..\..\..\MonoGame\MonoGame.Framework\MonoGame.Framework.iOS.csproj">
  74. <Project>{DB8508BB-9849-4CC2-BC0F-8EB5DACB3C47}</Project>
  75. <Name>MonoGame.Framework.iOS</Name>
  76. </ProjectReference>
  77. </ItemGroup>
  78. <ItemGroup>
  79. <Folder Include="Content\" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Content Include="Content\Font.xnb" />
  83. <Content Include="Content\cat.png" />
  84. <Content Include="GameThumbnail.png" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <None Include="Info.plist" />
  88. </ItemGroup>
  89. </Project>