VideoPlayer.iOS.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>{D6A6EF59-928C-4DDB-AD8D-D85DD914BF82}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>MonoGame.Samples.VideoPlayer</RootNamespace>
  12. <AssemblyName>MonoGameSamplesVideoPlayer</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;IPHONE</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>False</ConsolePause>
  23. <MtouchLink>None</MtouchLink>
  24. <MtouchDebug>True</MtouchDebug>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  27. <DebugType>none</DebugType>
  28. <Optimize>False</Optimize>
  29. <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <ConsolePause>False</ConsolePause>
  33. <MtouchLink>None</MtouchLink>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  36. <DebugSymbols>True</DebugSymbols>
  37. <DebugType>full</DebugType>
  38. <Optimize>False</Optimize>
  39. <OutputPath>bin\iPhone\Debug</OutputPath>
  40. <DefineConstants>DEBUG;</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. <ConsolePause>False</ConsolePause>
  44. <MtouchDebug>True</MtouchDebug>
  45. <CodesignKey>iPhone Developer</CodesignKey>
  46. </PropertyGroup>
  47. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  48. <DebugType>none</DebugType>
  49. <Optimize>False</Optimize>
  50. <OutputPath>bin\iPhone\Release</OutputPath>
  51. <ErrorReport>prompt</ErrorReport>
  52. <WarningLevel>4</WarningLevel>
  53. <ConsolePause>False</ConsolePause>
  54. <CodesignKey>iPhone Developer</CodesignKey>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="System" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="monotouch" />
  61. <Reference Include="OpenTK" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <None Include="Info.iOS.plist">
  65. <Link>Info.plist</Link>
  66. </None>
  67. </ItemGroup>
  68. <ItemGroup>
  69. <Compile Include="Main.cs" />
  70. <Compile Include="Game1.cs">
  71. <Link>Game1.cs</Link>
  72. </Compile>
  73. </ItemGroup>
  74. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  75. <ItemGroup>
  76. <Content Include="Content\spriteFont1.xnb">
  77. <Link>Content\spriteFont1.xnb</Link>
  78. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  79. </Content>
  80. <Content Include="Default.png">
  81. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  82. </Content>
  83. <Content Include="Content\sintel_trailer.m4v">
  84. <Link>Content\sintel_trailer.m4v</Link>
  85. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  86. </Content>
  87. </ItemGroup>
  88. </Project>