PageRenderTime 54ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/Samples/Blocks/Blocks.csproj

#
MSBuild | 100 lines | 100 code | 0 blank | 0 comment | 0 complexity | 3aafa9ec4bab8ebc031c73c545d88255 MD5 | raw file
Possible License(s): Apache-2.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{B6B68683-4E2A-4B2A-B5E5-F53B6F430379}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Blocks</RootNamespace>
  11. <AssemblyName>Blocks</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <PlatformTarget>x86</PlatformTarget>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <PlatformTarget>x86</PlatformTarget>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <StartupObject>Blocks.Program</StartupObject>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <ApplicationIcon>Blocks.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <ProjectReference Include="..\..\Content\Xml\DeltaEngine.Content.Xml.csproj">
  45. <Project>{138A40B5-3D80-4BA3-BD84-D82C151EE7FE}</Project>
  46. <Name>DeltaEngine.Content.Xml</Name>
  47. </ProjectReference>
  48. <ProjectReference Include="..\..\DeltaEngine.csproj">
  49. <Project>{20FA8D33-A964-4000-AD82-67BD6900793B}</Project>
  50. <Name>DeltaEngine</Name>
  51. </ProjectReference>
  52. <ProjectReference Include="..\..\Input\DeltaEngine.Input.csproj">
  53. <Project>{CC65E69E-FAFD-4C2B-85EB-5E57FD3AF847}</Project>
  54. <Name>DeltaEngine.Input</Name>
  55. </ProjectReference>
  56. <ProjectReference Include="..\..\Rendering2D\DeltaEngine.Rendering2D.csproj">
  57. <Project>{BDDB4AA4-5D31-43B3-9A3B-BF3030EDE927}</Project>
  58. <Name>DeltaEngine.Rendering2D</Name>
  59. </ProjectReference>
  60. <ProjectReference Include="..\..\Rendering2D\Fonts\DeltaEngine.Rendering2D.Fonts.csproj">
  61. <Project>{4A00FD90-FF7B-4250-9CBC-B6855130090B}</Project>
  62. <Name>DeltaEngine.Rendering2D.Fonts</Name>
  63. </ProjectReference>
  64. <ProjectReference Include="..\..\Rendering3D\Particles\DeltaEngine.Rendering3D.Particles.csproj">
  65. <Project>{BECE691C-BAC6-434B-B1F9-4D8653922585}</Project>
  66. <Name>DeltaEngine.Rendering3D.Particles</Name>
  67. </ProjectReference>
  68. <ProjectReference Include="..\..\Scenes\DeltaEngine.Scenes.csproj">
  69. <Project>{75BB4C75-DE36-47B3-9910-10EA8E8973B7}</Project>
  70. <Name>DeltaEngine.Scenes</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\..\Platforms\WindowsOpenGL\DeltaEngine.WindowsOpenGL.csproj">
  73. <Project>{88C49739-EFD4-46C7-90A8-1AE3D6F63563}</Project>
  74. <Name>DeltaEngine.WindowsOpenGL</Name>
  75. </ProjectReference>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Content Include="Blocks.ico" />
  79. <Content Include="BlocksIcon72x72.png" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="Brick.cs" />
  84. <Compile Include="Controller.cs" />
  85. <Compile Include="FruitBlocksContent.cs" />
  86. <Compile Include="JewelBlocksContent.cs" />
  87. <Compile Include="Game.cs" />
  88. <Compile Include="Grid.cs" />
  89. <Compile Include="BlocksContent.cs" />
  90. <Compile Include="MainMenu.cs" />
  91. <Compile Include="Program.cs" />
  92. <Compile Include="BlocksRenderLayer.cs" />
  93. <Compile Include="Block.cs" />
  94. <Compile Include="Soundbank.cs" />
  95. <Compile Include="UserInterface.cs" />
  96. <Compile Include="UserInterfaceLandscape.cs" />
  97. <Compile Include="UserInterfacePortrait.cs" />
  98. </ItemGroup>
  99. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  100. </Project>