/Samples/Breakout/Breakout.csproj
MSBuild | 90 lines | 90 code | 0 blank | 0 comment | 0 complexity | ba5580f98f7f849d8a3a9b89091d67da MD5 | raw file
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>{C9EFF5F8-501C-4ADE-B7C1-20D6991EB10F}</ProjectGuid> 8 <OutputType>WinExe</OutputType> 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <RootNamespace>Breakout</RootNamespace> 11 <AssemblyName>Breakout</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>Breakout.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="..\..\Input\DeltaEngine.Input.csproj"> 50 <Project>{CC65E69E-FAFD-4C2B-85EB-5E57FD3AF847}</Project> 51 <Name>DeltaEngine.Input</Name> 52 </ProjectReference> 53 <ProjectReference Include="..\..\Rendering2D\DeltaEngine.Rendering2D.csproj"> 54 <Project>{BDDB4AA4-5D31-43B3-9A3B-BF3030EDE927}</Project> 55 <Name>DeltaEngine.Rendering2D</Name> 56 </ProjectReference> 57 <ProjectReference Include="..\..\Rendering2D\Fonts\DeltaEngine.Rendering2D.Fonts.csproj"> 58 <Project>{4A00FD90-FF7B-4250-9CBC-B6855130090B}</Project> 59 <Name>DeltaEngine.Rendering2D.Fonts</Name> 60 </ProjectReference> 61 <ProjectReference Include="..\..\Rendering3D\Particles\DeltaEngine.Rendering3D.Particles.csproj"> 62 <Project>{BECE691C-BAC6-434B-B1F9-4D8653922585}</Project> 63 <Name>DeltaEngine.Rendering3D.Particles</Name> 64 </ProjectReference> 65 <ProjectReference Include="..\..\Scenes\DeltaEngine.Scenes.csproj"> 66 <Project>{75BB4C75-DE36-47B3-9910-10EA8E8973B7}</Project> 67 <Name>DeltaEngine.Scenes</Name> 68 </ProjectReference> 69 <ProjectReference Include="..\..\Platforms\WindowsOpenGL\DeltaEngine.WindowsOpenGL.csproj"> 70 <Project>{88C49739-EFD4-46C7-90A8-1AE3D6F63563}</Project> 71 <Name>DeltaEngine.WindowsOpenGL</Name> 72 </ProjectReference> 73 </ItemGroup> 74 <ItemGroup> 75 <Content Include="Breakout.ico" /> 76 </ItemGroup> 77 <ItemGroup> 78 <Compile Include="Properties\AssemblyInfo.cs" /> 79 <Compile Include="Ball.cs" /> 80 <Compile Include="MainMenu.cs" /> 81 <Compile Include="UI.cs" /> 82 <Compile Include="Game.cs" /> 83 <Compile Include="BallInLevel.cs" /> 84 <Compile Include="Score.cs" /> 85 <Compile Include="Level.cs" /> 86 <Compile Include="Paddle.cs" /> 87 <Compile Include="Program.cs" /> 88 </ItemGroup> 89 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 90</Project>