PageRenderTime 25ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/Samples/CarGame2D/CarGame2D.csproj

#
MSBuild | 82 lines | 82 code | 0 blank | 0 comment | 0 complexity | e91ce0c7ca68a6a0a4a98e50b3d6a8ae 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>{3BC8FA0A-44B7-4428-9EE7-E21EC6CEC462}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CarGame2D</RootNamespace>
  11. <AssemblyName>CarGame2D</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. <ApplicationIcon>CarGame2D.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <ProjectReference Include="..\..\Content\Xml\DeltaEngine.Content.Xml.csproj">
  42. <Project>{138A40B5-3D80-4BA3-BD84-D82C151EE7FE}</Project>
  43. <Name>DeltaEngine.Content.Xml</Name>
  44. </ProjectReference>
  45. <ProjectReference Include="..\..\DeltaEngine.csproj">
  46. <Project>{20FA8D33-A964-4000-AD82-67BD6900793B}</Project>
  47. <Name>DeltaEngine</Name>
  48. </ProjectReference>
  49. <ProjectReference Include="..\..\Graphics\DeltaEngine.Graphics.csproj">
  50. <Project>{8F701B0D-48B6-45CF-85E0-286BD53328BA}</Project>
  51. <Name>DeltaEngine.Graphics</Name>
  52. </ProjectReference>
  53. <ProjectReference Include="..\..\Platforms\WindowsOpenGL\DeltaEngine.WindowsOpenGL.csproj">
  54. <Project>{88C49739-EFD4-46C7-90A8-1AE3D6F63563}</Project>
  55. <Name>DeltaEngine.WindowsOpenGL</Name>
  56. </ProjectReference>
  57. <ProjectReference Include="..\..\Rendering2D\DeltaEngine.Rendering2D.csproj">
  58. <Project>{BDDB4AA4-5D31-43B3-9A3B-BF3030EDE927}</Project>
  59. <Name>DeltaEngine.Rendering2D</Name>
  60. </ProjectReference>
  61. <ProjectReference Include="..\..\Rendering2D\Fonts\DeltaEngine.Rendering2D.Fonts.csproj">
  62. <Project>{4A00FD90-FF7B-4250-9CBC-B6855130090B}</Project>
  63. <Name>DeltaEngine.Rendering2D.Fonts</Name>
  64. </ProjectReference>
  65. <ProjectReference Include="..\..\Rendering2D\Shapes\DeltaEngine.Rendering2D.Shapes.csproj">
  66. <Project>{BB73D940-CBD2-4F00-B246-2A25CA5ACD7E}</Project>
  67. <Name>DeltaEngine.Rendering2D.Shapes</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Content Include="CarGame2D.ico" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="Car.cs" />
  76. <Compile Include="Game.cs" />
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Track.cs" />
  79. <Compile Include="TrackRenderer.cs" />
  80. </ItemGroup>
  81. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  82. </Project>