BloomSample.MacOS.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A93553D9-11E5-4B0B-9809-4E4765D5FD8F}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>BloomSample</RootNamespace>
  12. <AssemblyName>BloomSample</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>True</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>False</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG;</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <EnablePackageSigning>False</EnablePackageSigning>
  23. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  24. <ConsolePause>False</ConsolePause>
  25. <EnableCodeSigning>False</EnableCodeSigning>
  26. <CreatePackage>False</CreatePackage>
  27. <CodeSigningKey>Mac Developer</CodeSigningKey>
  28. <UseSGen>False</UseSGen>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>none</DebugType>
  32. <Optimize>True</Optimize>
  33. <OutputPath>bin\Release</OutputPath>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <EnablePackageSigning>False</EnablePackageSigning>
  37. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  38. <LinkMode>Full</LinkMode>
  39. <ConsolePause>False</ConsolePause>
  40. <EnableCodeSigning>False</EnableCodeSigning>
  41. <CreatePackage>False</CreatePackage>
  42. <CodeSigningKey>Mac Developer</CodeSigningKey>
  43. <UseSGen>False</UseSGen>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
  46. <DebugType>none</DebugType>
  47. <Optimize>True</Optimize>
  48. <OutputPath>bin\AppStore</OutputPath>
  49. <ErrorReport>prompt</ErrorReport>
  50. <WarningLevel>4</WarningLevel>
  51. <PackageSigningKey>3rd Party Mac Developer Installer</PackageSigningKey>
  52. <IncludeMonoRuntime>True</IncludeMonoRuntime>
  53. <LinkMode>Full</LinkMode>
  54. <EnablePackageSigning>True</EnablePackageSigning>
  55. <ConsolePause>False</ConsolePause>
  56. <EnableCodeSigning>True</EnableCodeSigning>
  57. <CreatePackage>True</CreatePackage>
  58. <CodeSigningKey>3rd Party Mac Developer Application</CodeSigningKey>
  59. <UseSGen>False</UseSGen>
  60. </PropertyGroup>
  61. <ItemGroup>
  62. <Reference Include="System" />
  63. <Reference Include="System.Xml" />
  64. <Reference Include="System.Core" />
  65. <Reference Include="System.Xml.Linq" />
  66. <Reference Include="System.Drawing" />
  67. <Reference Include="MonoMac" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="Main.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. <Compile Include="BloomComponent.cs" />
  73. <Compile Include="BloomSettings.cs" />
  74. <Compile Include="Game.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Include="Info.plist" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  80. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  81. <ItemGroup>
  82. <Folder Include="Content\" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Content Include="Content\BloomCombine.xnb" />
  86. <Content Include="Content\BloomExtract.xnb" />
  87. <Content Include="Content\GaussianBlur.xnb" />
  88. <Content Include="Content\engine_diff_tex_0.xnb" />
  89. <Content Include="Content\hudFont.xnb" />
  90. <Content Include="Content\sunset.xnb" />
  91. <Content Include="Content\tank.xnb" />
  92. <Content Include="Content\turret_alt_diff_tex_0.xnb" />
  93. </ItemGroup>
  94. </Project>