Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/HeuristicLab.Encodings.PermutationEncoding-3.3.csproj @ 3231

Last change on this file since 3231 was 3231, checked in by abeham, 14 years ago

Added a permutation type property specifying whether it's a relative (directed or undirected) or absolute permutation #889

File size: 11.4 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Encodings.PermutationEncoding</RootNamespace>
11    <AssemblyName>HeuristicLab.Encodings.PermutationEncoding-3.3</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
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  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
38    <DocumentationFile>bin\Release\HeuristicLab.Encodings.PermutationEncoding-3.3.xml</DocumentationFile>
39  </PropertyGroup>
40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\x86\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x86</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47  </PropertyGroup>
48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
49    <OutputPath>bin\x86\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <DocumentationFile>bin\x86\Release\HeuristicLab.Encodings.PermutationEncoding-3.3.xml</DocumentationFile>
52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x86</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56  </PropertyGroup>
57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x64\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x64</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64  </PropertyGroup>
65  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
66    <OutputPath>bin\x64\Release\</OutputPath>
67    <DefineConstants>TRACE</DefineConstants>
68    <DocumentationFile>bin\x64\Release\HeuristicLab.Permutation-3.2.xml</DocumentationFile>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x64</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
74  <ItemGroup>
75    <Reference Include="System" />
76    <Reference Include="System.Core">
77      <RequiredTargetFramework>3.5</RequiredTargetFramework>
78    </Reference>
79    <Reference Include="System.Data" />
80    <Reference Include="System.Xml" />
81  </ItemGroup>
82  <ItemGroup>
83    <Compile Include="Creators\RandomPermutationCreator.cs" />
84    <Compile Include="Crossovers\CosaCrossover.cs" />
85    <Compile Include="Crossovers\CyclicCrossover.cs" />
86    <Compile Include="Crossovers\CyclicCrossover2.cs" />
87    <Compile Include="Crossovers\EdgeRecombinationCrossover.cs" />
88    <Compile Include="Crossovers\MaximalPreservativeCrossover.cs" />
89    <Compile Include="Crossovers\OrderBasedCrossover.cs" />
90    <Compile Include="Crossovers\OrderCrossover.cs" />
91    <Compile Include="Crossovers\OrderCrossover2.cs" />
92    <Compile Include="Crossovers\PartiallyMatchedCrossover.cs" />
93    <Compile Include="Crossovers\PositionBasedCrossover.cs" />
94    <Compile Include="HeuristicLabEncodingsPermutationEncodingPlugin.cs" />
95    <Compile Include="Interfaces\IPermutationCreator.cs" />
96    <Compile Include="Interfaces\IPermutationCrossover.cs" />
97    <Compile Include="Interfaces\IPermutationManipulator.cs" />
98    <Compile Include="Interfaces\IPermutationMoveOperator.cs" />
99    <Compile Include="Interfaces\IPermutationOperator.cs" />
100    <Compile Include="Interfaces\IThreeOptPermutationMoveOperator.cs" />
101    <Compile Include="Interfaces\ITwoOptPermutationMoveOperator.cs" />
102    <Compile Include="Manipulators\InsertionManipulator.cs" />
103    <Compile Include="Manipulators\InversionManipulator.cs" />
104    <Compile Include="Manipulators\ScrambleManipulator.cs" />
105    <Compile Include="Manipulators\Swap2Manipulator.cs" />
106    <Compile Include="Manipulators\Swap3Manipulator.cs" />
107    <Compile Include="Manipulators\TranslocationInversionManipulator.cs" />
108    <Compile Include="Manipulators\TranslocationManipulator.cs" />
109    <Compile Include="Moves\ThreeIndexMove.cs" />
110    <Compile Include="Moves\ThreeOpt\Insertion\ExhaustiveInsertionMoveGenerator.cs">
111      <SubType>Code</SubType>
112    </Compile>
113    <Compile Include="Moves\ThreeOpt\PreventDeleteThreeOptTabuMoveEvaluator.cs">
114      <SubType>Code</SubType>
115    </Compile>
116    <Compile Include="Moves\ThreeOpt\PreventReaddDeleteThreeOptTabuMoveEvaluator.cs">
117      <SubType>Code</SubType>
118    </Compile>
119    <Compile Include="Moves\ThreeOpt\PreventReaddThreeOptTabuMoveEvaluator.cs">
120      <SubType>Code</SubType>
121    </Compile>
122    <Compile Include="Moves\ThreeOpt\StochasticThreeOptMultiMoveGenerator.cs">
123      <SubType>Code</SubType>
124    </Compile>
125    <Compile Include="Moves\ThreeOpt\StochasticThreeOptSingleMoveGenerator.cs">
126      <SubType>Code</SubType>
127    </Compile>
128    <Compile Include="Moves\ThreeOpt\ThreeOptMove.cs">
129      <SubType>Code</SubType>
130    </Compile>
131    <Compile Include="Moves\ThreeOpt\ThreeOptMoveGenerator.cs">
132      <SubType>Code</SubType>
133    </Compile>
134    <Compile Include="Moves\ThreeOpt\ThreeOptMoveMaker.cs">
135      <SubType>Code</SubType>
136    </Compile>
137    <Compile Include="Moves\ThreeOpt\ThreeOptTabuMoveAttribute.cs">
138      <SubType>Code</SubType>
139    </Compile>
140    <Compile Include="Moves\ThreeOpt\ThreeOptTabuMoveMaker.cs">
141      <SubType>Code</SubType>
142    </Compile>
143    <Compile Include="Moves\TwoIndexMove.cs">
144      <SubType>Code</SubType>
145    </Compile>
146    <Compile Include="Moves\TwoOpt\ExhaustiveTwoOptMoveGenerator.cs">
147      <SubType>Code</SubType>
148    </Compile>
149    <Compile Include="Moves\TwoOpt\PreventDeleteTwoOptTabuMoveEvaluator.cs">
150      <SubType>Code</SubType>
151    </Compile>
152    <Compile Include="Moves\TwoOpt\PreventReaddDeleteTwoOptTabuMoveEvaluator.cs">
153      <SubType>Code</SubType>
154    </Compile>
155    <Compile Include="Moves\TwoOpt\PreventReaddTwoOptTabuMoveEvaluator.cs">
156      <SubType>Code</SubType>
157    </Compile>
158    <Compile Include="Moves\TwoOpt\StochasticTwoOptMultiMoveGenerator.cs">
159      <SubType>Code</SubType>
160    </Compile>
161    <Compile Include="Moves\TwoOpt\StochasticTwoOptSingleMoveGenerator.cs">
162      <SubType>Code</SubType>
163    </Compile>
164    <Compile Include="Moves\TwoOpt\TwoOptMove.cs">
165      <SubType>Code</SubType>
166    </Compile>
167    <Compile Include="Moves\TwoOpt\TwoOptMoveGenerator.cs">
168      <SubType>Code</SubType>
169    </Compile>
170    <Compile Include="Moves\TwoOpt\TwoOptMoveMaker.cs">
171      <SubType>Code</SubType>
172    </Compile>
173    <Compile Include="Moves\TwoOpt\TwoOptTabuMoveAttribute.cs">
174      <SubType>Code</SubType>
175    </Compile>
176    <Compile Include="Moves\TwoOpt\TwoOptTabuMoveMaker.cs">
177      <SubType>Code</SubType>
178    </Compile>
179    <Compile Include="PermutationManipulator.cs" />
180    <Compile Include="PermutationCrossover.cs" />
181    <Compile Include="Permutation.cs" />
182    <Compile Include="PermutationType.cs" />
183    <Compile Include="PermutationTypes.cs" />
184    <Compile Include="Properties\AssemblyInfo.cs" />
185  </ItemGroup>
186  <ItemGroup>
187    <None Include="HeuristicLab.snk" />
188    <None Include="HeuristicLabEncodingsPermutationEncodingPlugin.cs.frame" />
189    <None Include="Properties\AssemblyInfo.frame" />
190  </ItemGroup>
191  <ItemGroup>
192    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
193      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
194      <Name>HeuristicLab.Collections-3.3</Name>
195    </ProjectReference>
196    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
197      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
198      <Name>HeuristicLab.Common-3.2</Name>
199    </ProjectReference>
200    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
201      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
202      <Name>HeuristicLab.Core-3.3</Name>
203    </ProjectReference>
204    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
205      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
206      <Name>HeuristicLab.Data-3.3</Name>
207    </ProjectReference>
208    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
209      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
210      <Name>HeuristicLab.Operators-3.3</Name>
211    </ProjectReference>
212    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
213      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
214      <Name>HeuristicLab.Optimization-3.3</Name>
215    </ProjectReference>
216    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
217      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
218      <Name>HeuristicLab.Parameters-3.3</Name>
219    </ProjectReference>
220    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
221      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
222      <Name>HeuristicLab.Persistence-3.3</Name>
223    </ProjectReference>
224    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
225      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
226      <Name>HeuristicLab.PluginInfrastructure</Name>
227    </ProjectReference>
228  </ItemGroup>
229  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
230  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
231       Other similar extension points exist, see Microsoft.Common.targets.
232  <Target Name="BeforeBuild">
233  </Target>
234  <Target Name="AfterBuild">
235  </Target>
236  -->
237  <PropertyGroup>
238    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
239set ProjectDir=$(ProjectDir)
240set SolutionDir=$(SolutionDir)
241set Outdir=$(Outdir)
242
243call PreBuildEvent.cmd
244SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabEncodingsPermutationEncodingPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabEncodingsPermutationEncodingPlugin.cs"</PreBuildEvent>
245  </PropertyGroup>
246</Project>
Note: See TracBrowser for help on using the repository browser.