Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/PackingPlanVisualizations/PackingPlanVisualizations.csproj @ 13161

Last change on this file since 13161 was 13161, checked in by gkronber, 8 years ago

#1966: removed SharpDX binaries since these are available through a transport plugin now (see #2504) and also made some changes to make the code work with the latest stable release of SharpDX

File size: 5.2 KB
Line 
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)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{0FD5EA67-A284-4166-9F45-9C6BC07D5B83}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>PackingPlanVisualizations</RootNamespace>
12    <AssemblyName>PackingPlanVisualizations</AssemblyName>
13    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14    <TargetFrameworkProfile>
15    </TargetFrameworkProfile>
16    <FileAlignment>512</FileAlignment>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26    <Prefer32Bit>false</Prefer32Bit>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35    <Prefer32Bit>false</Prefer32Bit>
36  </PropertyGroup>
37  <PropertyGroup>
38    <SignAssembly>true</SignAssembly>
39  </PropertyGroup>
40  <PropertyGroup>
41    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
42  </PropertyGroup>
43  <ItemGroup>
44    <Reference Include="SharpDX">
45      <HintPath>..\..\..\trunk\sources\bin\SharpDX.dll</HintPath>
46      <Private>False</Private>
47    </Reference>
48    <Reference Include="SharpDX.Direct2D1">
49      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Direct2D1.dll</HintPath>
50      <Private>False</Private>
51    </Reference>
52    <Reference Include="SharpDX.Direct3D11">
53      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Direct3D11.dll</HintPath>
54      <Private>False</Private>
55    </Reference>
56    <Reference Include="SharpDX.DXGI">
57      <HintPath>..\..\..\trunk\sources\bin\SharpDX.DXGI.dll</HintPath>
58      <Private>False</Private>
59    </Reference>
60    <Reference Include="SharpDX.Toolkit">
61      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Toolkit.dll</HintPath>
62      <Private>False</Private>
63    </Reference>
64    <Reference Include="SharpDX.Toolkit.Game">
65      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Toolkit.Game.dll</HintPath>
66      <Private>False</Private>
67    </Reference>
68    <Reference Include="SharpDX.Toolkit.Graphics">
69      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Toolkit.Graphics.dll</HintPath>
70      <Private>False</Private>
71    </Reference>
72    <Reference Include="SharpDX.Toolkit.Input">
73      <HintPath>..\..\..\trunk\sources\bin\SharpDX.Toolkit.Input.dll</HintPath>
74      <Private>False</Private>
75    </Reference>
76    <Reference Include="System" />
77    <Reference Include="System.Core" />
78    <Reference Include="System.Xml.Linq" />
79    <Reference Include="System.Data.DataSetExtensions" />
80    <Reference Include="Microsoft.CSharp" />
81    <Reference Include="System.Data" />
82    <Reference Include="System.Drawing" />
83    <Reference Include="System.Windows.Forms" />
84    <Reference Include="System.Xml" />
85  </ItemGroup>
86  <ItemGroup>
87    <Compile Include="3D\BasicCuboidShape.cs" />
88    <Compile Include="3D\CenteredContainer.cs" />
89    <Compile Include="3D\CuboidShapePreperations.cs" />
90    <Compile Include="3D\PackingGame.cs" />
91    <Compile Include="3D\PackingPlan3D.cs">
92      <SubType>UserControl</SubType>
93    </Compile>
94    <Compile Include="3D\PackingPlan3D.Designer.cs">
95      <DependentUpon>PackingPlan3D.cs</DependentUpon>
96    </Compile>
97    <Compile Include="3D\VertexPositionColorNormal.cs" />
98    <Compile Include="2D\CenteredContainer2D.cs" />
99    <Compile Include="2D\PackingPlan2D.cs">
100      <SubType>UserControl</SubType>
101    </Compile>
102    <Compile Include="2D\PackingPlan2D.Designer.cs">
103      <DependentUpon>PackingPlan2D.cs</DependentUpon>
104    </Compile>
105    <Compile Include="Properties\AssemblyInfo.cs" />
106    <Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
107  </ItemGroup>
108  <ItemGroup>
109    <EmbeddedResource Include="3D\PackingPlan3D.resx">
110      <DependentUpon>PackingPlan3D.cs</DependentUpon>
111    </EmbeddedResource>
112    <EmbeddedResource Include="2D\PackingPlan2D.resx">
113      <DependentUpon>PackingPlan2D.cs</DependentUpon>
114    </EmbeddedResource>
115  </ItemGroup>
116  <ItemGroup>
117    <None Include="HeuristicLab.snk" />
118  </ItemGroup>
119  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
120  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
121       Other similar extension points exist, see Microsoft.Common.targets.
122  <Target Name="BeforeBuild">
123  </Target>
124  <Target Name="AfterBuild">
125  </Target>
126  -->
127</Project>
Note: See TracBrowser for help on using the repository browser.