/Rendering/Cameras/Delta.Rendering.Cameras.csproj
MSBuild | 81 lines | 74 code | 0 blank | 7 comment | 0 complexity | 23bed43e09e62ccde59a9990c82c419b 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 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> 6 <ProductVersion>9.0.30729</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{5D12ADC1-89BE-4A85-8DD9-49F9C725A2CF}</ProjectGuid> 9 <OutputType>Library</OutputType> 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 <RootNamespace>Delta.Rendering.Cameras</RootNamespace> 12 <AssemblyName>Delta.Rendering.Cameras</AssemblyName> 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 <FileAlignment>512</FileAlignment> 15 <FileUpgradeFlags> 16 </FileUpgradeFlags> 17 <OldToolsVersion>3.5</OldToolsVersion> 18 <UpgradeBackupLocation /> 19 <TargetFrameworkProfile>Client</TargetFrameworkProfile> 20 </PropertyGroup> 21 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 22 <DebugSymbols>true</DebugSymbols> 23 <DebugType>full</DebugType> 24 <Optimize>false</Optimize> 25 <OutputPath>bin\Debug\</OutputPath> 26 <DefineConstants>DEBUG;TRACE</DefineConstants> 27 <ErrorReport>prompt</ErrorReport> 28 <WarningLevel>4</WarningLevel> 29 <PlatformTarget>x86</PlatformTarget> 30 </PropertyGroup> 31 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 32 <DebugType>pdbonly</DebugType> 33 <Optimize>true</Optimize> 34 <OutputPath>bin\Release\</OutputPath> 35 <DefineConstants>TRACE</DefineConstants> 36 <ErrorReport>prompt</ErrorReport> 37 <WarningLevel>4</WarningLevel> 38 <PlatformTarget>x86</PlatformTarget> 39 </PropertyGroup> 40 <ItemGroup> 41 <Reference Include="System" /> 42 </ItemGroup> 43 <ItemGroup> 44 <Compile Include="BaseCamera.cs" /> 45 <Compile Include="GameCamera.cs" /> 46 <Compile Include="InterpolationMode.cs" /> 47 <Compile Include="IsometricCamera.cs" /> 48 <Compile Include="FreeCamera.cs" /> 49 <Compile Include="IsoPerspectiveCamera.cs" /> 50 <Compile Include="LookAtCamera.cs" /> 51 <Compile Include="PathCamera.cs" /> 52 <Compile Include="Properties\AssemblyInfo.cs" /> 53 </ItemGroup> 54 <ItemGroup> 55 <Reference Include="Delta.InputSystem"> 56 <HintPath>..\..\Dlls\Delta.InputSystem.dll</HintPath> 57 </Reference> 58 <Reference Include="Delta.Engine"> 59 <HintPath>..\..\Dlls\Delta.Engine.dll</HintPath> 60 </Reference> 61 <ProjectReference Include="..\..\Engine\Game\Delta.Engine.Game.csproj"> 62 <Project>{13DF5467-6C7B-4978-B6B8-B2B034F1E267}</Project> 63 <Name>Delta.Engine.Game</Name> 64 </ProjectReference> 65 <ProjectReference Include="..\..\Utilities\Delta.Utilities.csproj"> 66 <Project>{D8C2961F-ABC0-424A-8603-0671C427B185}</Project> 67 <Name>Delta.Utilities</Name> 68 </ProjectReference> 69 <Reference Include="Delta.Rendering"> 70 <HintPath>..\..\Dlls\Delta.Rendering.dll</HintPath> 71 </Reference> 72 </ItemGroup> 73 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 74 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 75 Other similar extension points exist, see Microsoft.Common.targets. 76 <Target Name="BeforeBuild"> 77 </Target> 78 <Target Name="AfterBuild"> 79 </Target> 80 --> 81</Project>