/Samples/Pong/Pong.csproj
MSBuild | 75 lines | 68 code | 0 blank | 7 comment | 0 complexity | 82e2442fe8c116d6c498fd46ae27caea 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 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> 6 <ProductVersion>8.0.30703</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{7C6D4682-A8AB-4954-9DB2-9F76E650F674}</ProjectGuid> 9 <OutputType>WinExe</OutputType> 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 <RootNamespace>Pong</RootNamespace> 12 <AssemblyName>Pong</AssemblyName> 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 <TargetFrameworkProfile>Client</TargetFrameworkProfile> 15 <FileAlignment>512</FileAlignment> 16 </PropertyGroup> 17 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 18 <DebugSymbols>true</DebugSymbols> 19 <OutputPath>bin\Debug\</OutputPath> 20 <DefineConstants>DEBUG;TRACE</DefineConstants> 21 <DebugType>full</DebugType> 22 <PlatformTarget>x86</PlatformTarget> 23 <ErrorReport>prompt</ErrorReport> 24 </PropertyGroup> 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> 26 <OutputPath>bin\Release\</OutputPath> 27 <DefineConstants>TRACE</DefineConstants> 28 <Optimize>true</Optimize> 29 <DebugType>pdbonly</DebugType> 30 <PlatformTarget>x86</PlatformTarget> 31 <ErrorReport>prompt</ErrorReport> 32 </PropertyGroup> 33 <PropertyGroup> 34 <ApplicationIcon>Pong.ico</ApplicationIcon> 35 </PropertyGroup> 36 <ItemGroup> 37 <Reference Include="System" /> 38 </ItemGroup> 39 <ItemGroup> 40 <Compile Include="PongGame.cs" /> 41 <Compile Include="Program.cs" /> 42 <Compile Include="Properties\AssemblyInfo.cs" /> 43 </ItemGroup> 44 <ItemGroup> 45 <Reference Include="Delta.Engine"> 46 <HintPath>..\..\Dlls\Delta.Engine.dll</HintPath> 47 </Reference> 48 <Reference Include="Delta.Graphics"> 49 <HintPath>..\..\Dlls\Delta.Graphics.dll</HintPath> 50 </Reference> 51 <Reference Include="Delta.InputSystem"> 52 <HintPath>..\..\Dlls\Delta.InputSystem.dll</HintPath> 53 </Reference> 54 <Reference Include="Delta.Multimedia"> 55 <HintPath>..\..\Dlls\Delta.Multimedia.dll</HintPath> 56 </Reference> 57 <Reference Include="Delta.Rendering.Basics"> 58 <HintPath>..\..\Dlls\Delta.Rendering.Basics.dll</HintPath> 59 </Reference> 60 <Reference Include="Delta.Rendering"> 61 <HintPath>..\..\Dlls\Delta.Rendering.dll</HintPath> 62 </Reference> 63 <Reference Include="Delta.Utilities"> 64 <HintPath>..\..\Dlls\Delta.Utilities.dll</HintPath> 65 </Reference> 66 </ItemGroup> 67 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 68 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 69 Other similar extension points exist, see Microsoft.Common.targets. 70 <Target Name="BeforeBuild"> 71 </Target> 72 <Target Name="AfterBuild"> 73 </Target> 74 --> 75</Project>