MonoGame.Samples.Flocking.iOS.csproj 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>{05EB969D-B86A-4071-A60F-122F474C5968}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>Flocking</RootNamespace>
  12. <AssemblyName>Flocking</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;IOS</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>false</ConsolePause>
  23. <MtouchDebug>true</MtouchDebug>
  24. <MtouchProfiling>true</MtouchProfiling>
  25. <MtouchLink>None</MtouchLink>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  28. <DebugType>none</DebugType>
  29. <Optimize>true</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. <MtouchProfiling>true</MtouchProfiling>
  48. </PropertyGroup>
  49. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  50. <DebugType>none</DebugType>
  51. <Optimize>true</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. </PropertyGroup>
  58. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
  59. <DebugType>none</DebugType>
  60. <Optimize>true</Optimize>
  61. <OutputPath>bin\iPhone\Ad-Hoc</OutputPath>
  62. <ErrorReport>prompt</ErrorReport>
  63. <WarningLevel>4</WarningLevel>
  64. <ConsolePause>false</ConsolePause>
  65. <BuildIpa>true</BuildIpa>
  66. <CodesignKey>iPhone Distribution</CodesignKey>
  67. </PropertyGroup>
  68. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' ">
  69. <DebugType>none</DebugType>
  70. <Optimize>true</Optimize>
  71. <OutputPath>bin\iPhone\AppStore</OutputPath>
  72. <ErrorReport>prompt</ErrorReport>
  73. <WarningLevel>4</WarningLevel>
  74. <ConsolePause>false</ConsolePause>
  75. <CodesignKey>iPhone Distribution</CodesignKey>
  76. </PropertyGroup>
  77. <ItemGroup>
  78. <Reference Include="System" />
  79. <Reference Include="System.Xml" />
  80. <Reference Include="System.Core" />
  81. <Reference Include="monotouch" />
  82. <Reference Include="OpenTK" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.iOS.csproj">
  86. <Project>{DB8508BB-9849-4CC2-BC0F-8EB5DACB3C47}</Project>
  87. <Name>MonoGame.Framework.iOS</Name>
  88. </ProjectReference>
  89. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.iOS.csproj">
  90. <Project>{734EAA48-F1CA-481A-B391-0285BC0E8B40}</Project>
  91. <Name>Lidgren.Network.iOS</Name>
  92. </ProjectReference>
  93. </ItemGroup>
  94. <ItemGroup>
  95. <Compile Include="Main.cs" />
  96. <Compile Include="Properties\AssemblyInfo.cs" />
  97. <Compile Include="Animals\Animal.cs" />
  98. <Compile Include="Animals\Bird.cs" />
  99. <Compile Include="Animals\Cat.cs" />
  100. <Compile Include="Behaviors\AlignBehavior.cs" />
  101. <Compile Include="Behaviors\Behavior.cs" />
  102. <Compile Include="Behaviors\Behaviors.cs" />
  103. <Compile Include="Behaviors\CohesionBehavior.cs" />
  104. <Compile Include="Behaviors\FleeBehavior.cs" />
  105. <Compile Include="Behaviors\SeparationBehavior.cs" />
  106. <Compile Include="Flock.cs" />
  107. <Compile Include="FlockingSample.cs" />
  108. <Compile Include="InputState.cs" />
  109. <Compile Include="Program.cs" />
  110. </ItemGroup>
  111. <ItemGroup>
  112. <None Include="Info.plist" />
  113. <None Include="Content\FlockingContent.contentproj" />
  114. </ItemGroup>
  115. <ItemGroup>
  116. <Content Include="Default.png" />
  117. <Content Include="GameThumbnail.png" />
  118. <Content Include="Content\logo.png" />
  119. <Content Include="Content\HUDFont.xnb">
  120. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  121. </Content>
  122. <Content Include="Content\cat.png" />
  123. <Content Include="Content\mouse.png" />
  124. <Content Include="Content\xboxControllerButtonB.png" />
  125. <Content Include="Content\xboxControllerButtonX.png" />
  126. <Content Include="Content\xboxControllerButtonY.png" />
  127. </ItemGroup>
  128. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  129. <ItemGroup>
  130. <Folder Include="Animals\" />
  131. <Folder Include="Behaviors\" />
  132. </ItemGroup>
  133. </Project>