/Samples/SimpleGameExample/SimpleGameExample.csproj
MSBuild | 124 lines | 124 code | 0 blank | 0 comment | 0 complexity | e0099c0f406cf23ab039125e27453ca7 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 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <PlatformTarget>x86</PlatformTarget> 6 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> 7 <ProductVersion>8.0.30703</ProductVersion> 8 <SchemaVersion>2.0</SchemaVersion> 9 <ProjectGuid>{44ED9214-D344-4F77-9C22-408067359D86}</ProjectGuid> 10 <OutputType>WinExe</OutputType> 11 <AppDesignerFolder>Properties</AppDesignerFolder> 12 <RootNamespace>SimpleGameExample</RootNamespace> 13 <AssemblyName>SimpleGameExample</AssemblyName> 14 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 15 <TargetFrameworkProfile>Client</TargetFrameworkProfile> 16 <FileAlignment>512</FileAlignment> 17 <FileUpgradeFlags> 18 </FileUpgradeFlags> 19 <OldToolsVersion>3.5</OldToolsVersion> 20 <UpgradeBackupLocation /> 21 <PublishUrl>publish\</PublishUrl> 22 <Install>true</Install> 23 <InstallFrom>Disk</InstallFrom> 24 <UpdateEnabled>false</UpdateEnabled> 25 <UpdateMode>Foreground</UpdateMode> 26 <UpdateInterval>7</UpdateInterval> 27 <UpdateIntervalUnits>Days</UpdateIntervalUnits> 28 <UpdatePeriodically>false</UpdatePeriodically> 29 <UpdateRequired>false</UpdateRequired> 30 <MapFileExtensions>true</MapFileExtensions> 31 <ApplicationRevision>0</ApplicationRevision> 32 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 33 <IsWebBootstrapper>false</IsWebBootstrapper> 34 <UseApplicationTrust>false</UseApplicationTrust> 35 <BootstrapperEnabled>true</BootstrapperEnabled> 36 </PropertyGroup> 37 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 38 <DebugSymbols>true</DebugSymbols> 39 <OutputPath>bin\Debug\</OutputPath> 40 <DefineConstants>DEBUG;TRACE</DefineConstants> 41 <DebugType>full</DebugType> 42 <PlatformTarget>x86</PlatformTarget> 43 <ErrorReport>prompt</ErrorReport> 44 <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets> 45 <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules> 46 <WarningLevel>4</WarningLevel> 47 <Optimize>false</Optimize> 48 </PropertyGroup> 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> 50 <OutputPath>bin\Release\</OutputPath> 51 <DefineConstants>TRACE</DefineConstants> 52 <Optimize>true</Optimize> 53 <DebugType>pdbonly</DebugType> 54 <PlatformTarget>x86</PlatformTarget> 55 <ErrorReport>prompt</ErrorReport> 56 <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets> 57 <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules> 58 <WarningLevel>4</WarningLevel> 59 </PropertyGroup> 60 <PropertyGroup> 61 <ApplicationIcon>SimpleGameExample.ico</ApplicationIcon> 62 </PropertyGroup> 63 <ItemGroup> 64 <Reference Include="System"> 65 </Reference> 66 </ItemGroup> 67 <ItemGroup> 68 <Compile Include="Game.cs" /> 69 <Compile Include="Program.cs" /> 70 <Compile Include="Properties\AssemblyInfo.cs" /> 71 </ItemGroup> 72 <ItemGroup> 73 <Reference Include="Delta.ContentSystem"> 74 <HintPath>..\..\Dlls\Delta.ContentSystem.dll</HintPath> 75 </Reference> 76 <Reference Include="Delta.ContentSystem.Rendering"> 77 <HintPath>..\..\Dlls\Delta.ContentSystem.Rendering.dll</HintPath> 78 </Reference> 79 <Reference Include="Delta.Engine"> 80 <HintPath>..\..\Dlls\Delta.Engine.dll</HintPath> 81 </Reference> 82 <Reference Include="Delta.Graphics"> 83 <HintPath>..\..\Dlls\Delta.Graphics.dll</HintPath> 84 </Reference> 85 <Reference Include="Delta.InputSystem"> 86 <HintPath>..\..\Dlls\Delta.InputSystem.dll</HintPath> 87 </Reference> 88 <Reference Include="Delta.Multimedia"> 89 <HintPath>..\..\Dlls\Delta.Multimedia.dll</HintPath> 90 </Reference> 91 <Reference Include="Delta.Rendering.Basics"> 92 <HintPath>..\..\Dlls\Delta.Rendering.Basics.dll</HintPath> 93 </Reference> 94 <Reference Include="Delta.Rendering"> 95 <HintPath>..\..\Dlls\Delta.Rendering.dll</HintPath> 96 </Reference> 97 <Reference Include="Delta.Utilities"> 98 <HintPath>..\..\Dlls\Delta.Utilities.dll</HintPath> 99 </Reference> 100 </ItemGroup> 101 <ItemGroup> 102 <BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client"> 103 <Visible>False</Visible> 104 <ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName> 105 <Install>true</Install> 106 </BootstrapperPackage> 107 <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> 108 <Visible>False</Visible> 109 <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName> 110 <Install>false</Install> 111 </BootstrapperPackage> 112 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> 113 <Visible>False</Visible> 114 <ProductName>.NET Framework 3.5 SP1</ProductName> 115 <Install>false</Install> 116 </BootstrapperPackage> 117 <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1"> 118 <Visible>False</Visible> 119 <ProductName>Windows Installer 3.1</ProductName> 120 <Install>true</Install> 121 </BootstrapperPackage> 122 </ItemGroup> 123 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 124</Project>