Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DiversityAnalysis/HeuristicLab.Problems.TravelingSalesman/3.3/HeuristicLab.Problems.TravelingSalesman-3.3.csproj @ 4695

Last change on this file since 4695 was 4502, checked in by swinkler, 14 years ago

Worked on population diversity analyzer for TSP: Implemented storing of population diversity result details in a specialized data structure and the algorithm's results collection. (#1188)

File size: 12.4 KB
RevLine 
[4065]1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
[2]3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
[574]6    <ProductVersion>9.0.30729</ProductVersion>
[2]7    <SchemaVersion>2.0</SchemaVersion>
[3158]8    <ProjectGuid>{D767C38D-8014-46B0-9A32-03A3AECCE34A}</ProjectGuid>
[2]9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
[3158]11    <RootNamespace>HeuristicLab.Problems.TravelingSalesman</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.TravelingSalesman-3.3</AssemblyName>
[2]13    <SignAssembly>true</SignAssembly>
14    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
15    <FileUpgradeFlags>
16    </FileUpgradeFlags>
[4065]17    <OldToolsVersion>3.5</OldToolsVersion>
[2]18    <UpgradeBackupLocation>
19    </UpgradeBackupLocation>
[1699]20    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[4065]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>
[2]36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
38    <DebugSymbols>true</DebugSymbols>
39    <DebugType>full</DebugType>
40    <Optimize>false</Optimize>
41    <OutputPath>bin\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <ErrorReport>prompt</ErrorReport>
44    <WarningLevel>4</WarningLevel>
45    <DocumentationFile>
46    </DocumentationFile>
[4065]47    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2]48  </PropertyGroup>
49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
50    <DebugType>pdbonly</DebugType>
51    <Optimize>true</Optimize>
52    <OutputPath>bin\Release\</OutputPath>
53    <DefineConstants>TRACE</DefineConstants>
54    <ErrorReport>prompt</ErrorReport>
55    <WarningLevel>4</WarningLevel>
[3158]56    <DocumentationFile>bin\Release\HeuristicLab.Problems.TravelingSalesman-3.3.xml</DocumentationFile>
[2]57    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
[4065]58    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2]59  </PropertyGroup>
[564]60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
61    <DebugSymbols>true</DebugSymbols>
62    <OutputPath>bin\x86\Debug\</OutputPath>
63    <DefineConstants>DEBUG;TRACE</DefineConstants>
64    <DebugType>full</DebugType>
65    <PlatformTarget>x86</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
[4065]67    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[564]68  </PropertyGroup>
69  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
70    <OutputPath>bin\x86\Release\</OutputPath>
71    <DefineConstants>TRACE</DefineConstants>
[2900]72    <DocumentationFile>bin\x86\Release\HeuristicLab.Routing.TSP-3.3.xml</DocumentationFile>
[564]73    <Optimize>true</Optimize>
74    <DebugType>pdbonly</DebugType>
75    <PlatformTarget>x86</PlatformTarget>
76    <ErrorReport>prompt</ErrorReport>
[4065]77    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[564]78  </PropertyGroup>
[1474]79  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
80    <DebugSymbols>true</DebugSymbols>
81    <OutputPath>bin\x64\Debug\</OutputPath>
82    <DefineConstants>DEBUG;TRACE</DefineConstants>
83    <DebugType>full</DebugType>
84    <PlatformTarget>x64</PlatformTarget>
85    <ErrorReport>prompt</ErrorReport>
[4065]86    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[1474]87  </PropertyGroup>
88  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
89    <OutputPath>bin\x64\Release\</OutputPath>
90    <DefineConstants>TRACE</DefineConstants>
[2900]91    <DocumentationFile>bin\x64\Release\HeuristicLab.Routing.TSP-3.3.XML</DocumentationFile>
[1474]92    <Optimize>true</Optimize>
93    <DebugType>pdbonly</DebugType>
94    <PlatformTarget>x64</PlatformTarget>
95    <ErrorReport>prompt</ErrorReport>
[4065]96    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[1474]97  </PropertyGroup>
[2]98  <ItemGroup>
[4501]99    <Reference Include="HeuristicLab.Analysis-3.3">
100      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Analysis-3.3.dll</HintPath>
101    </Reference>
[4402]102    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
103      <SpecificVersion>False</SpecificVersion>
104      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath>
105    </Reference>
106    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
107      <SpecificVersion>False</SpecificVersion>
108      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
109    </Reference>
110    <Reference Include="HeuristicLab.Common.Resources-3.3, Version=3.2.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
111      <SpecificVersion>False</SpecificVersion>
112      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common.Resources-3.3.dll</HintPath>
113    </Reference>
114    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
115      <SpecificVersion>False</SpecificVersion>
116      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
117    </Reference>
118    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
119      <SpecificVersion>False</SpecificVersion>
120      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath>
121    </Reference>
122    <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
123      <SpecificVersion>False</SpecificVersion>
124      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.dll</HintPath>
125    </Reference>
126    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
127      <SpecificVersion>False</SpecificVersion>
128      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Operators-3.3.dll</HintPath>
129    </Reference>
130    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
131      <SpecificVersion>False</SpecificVersion>
132      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Optimization-3.3.dll</HintPath>
133    </Reference>
134    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
135      <SpecificVersion>False</SpecificVersion>
136      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Parameters-3.3.dll</HintPath>
137    </Reference>
138    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
139      <SpecificVersion>False</SpecificVersion>
140      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
141    </Reference>
142    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
143      <SpecificVersion>False</SpecificVersion>
144      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
145    </Reference>
[2]146    <Reference Include="System" />
[1699]147    <Reference Include="System.Core">
148      <RequiredTargetFramework>3.5</RequiredTargetFramework>
149    </Reference>
[2]150    <Reference Include="System.Data" />
[2865]151    <Reference Include="System.Drawing" />
[2]152    <Reference Include="System.Xml" />
153  </ItemGroup>
154  <ItemGroup>
[3663]155    <Compile Include="Analyzers\BestTSPSolutionAnalyzer.cs" />
[4502]156    <Compile Include="Analyzers\TSPPopulationDiversityAnalysisDetails.cs" />
[4420]157    <Compile Include="Analyzers\TSPPopulationDiversityAnalyzer.cs" />
[3155]158    <Compile Include="Evaluators\TSPEuclideanPathEvaluator.cs" />
159    <Compile Include="Evaluators\TSPGeoPathEvaluator.cs" />
[3158]160    <Compile Include="HeuristicLabProblemsTravelingSalesmanPlugin.cs" />
[3232]161    <Compile Include="MoveEvaluators\ThreeOpt\TSPTranslocationMoveEuclideanPathEvaluator.cs" />
162    <Compile Include="MoveEvaluators\ThreeOpt\TSPTranslocationMoveGeoPathEvaluator.cs" />
163    <Compile Include="MoveEvaluators\ThreeOpt\TSPTranslocationMovePathEvaluator.cs" />
164    <Compile Include="MoveEvaluators\ThreeOpt\TSPTranslocationMoveRoundedEuclideanPathEvaluator.cs" />
165    <Compile Include="MoveEvaluators\TwoOpt\TSPInversionMoveEuclideanPathEvaluator.cs" />
166    <Compile Include="MoveEvaluators\TwoOpt\TSPInversionMoveGeoPathEvaluator.cs" />
167    <Compile Include="MoveEvaluators\TwoOpt\TSPInversionMovePathEvaluator.cs" />
168    <Compile Include="MoveEvaluators\TwoOpt\TSPInversionMoveRoundedEuclideanPathEvaluator.cs" />
[3159]169    <Compile Include="TravelingSalesmanProblem.cs" />
[3151]170    <Compile Include="TSPLIBTourParser.cs" />
[3107]171    <Compile Include="PathTSPTour.cs" />
[2988]172    <Compile Include="Evaluators\TSPCoordinatesPathEvaluator.cs" />
173    <Compile Include="Evaluators\TSPEvaluator.cs" />
174    <Compile Include="Evaluators\TSPRoundedEuclideanPathEvaluator.cs" />
175    <Compile Include="Interfaces\ITSPCoordinatesPathEvaluator.cs" />
176    <Compile Include="Interfaces\ITSPEvaluator.cs" />
[3074]177    <Compile Include="Interfaces\ITSPMoveEvaluator.cs" />
[2988]178    <Compile Include="Interfaces\ITSPPathEvaluator.cs" />
[3074]179    <Compile Include="Interfaces\ITSPPathMoveEvaluator.cs" />
180    <Compile Include="MoveEvaluators\TSPPathMoveEvaluator.cs" />
181    <Compile Include="MoveEvaluators\TSPMoveEvaluator.cs" />
[2805]182    <Compile Include="TSPLIBParser.cs" />
[2]183    <Compile Include="Properties\AssemblyInfo.cs" />
184  </ItemGroup>
185  <ItemGroup>
186    <None Include="HeuristicLab.snk" />
[3158]187    <None Include="HeuristicLabProblemsTravelingSalesmanPlugin.cs.frame" />
[30]188    <None Include="Properties\AssemblyInfo.frame" />
[3156]189    <None Include="TSPLIB Sample Problems\ch130.opt.tour" />
190    <None Include="TSPLIB Sample Problems\ch130.tsp" />
191    <None Include="TSPLIB Sample Problems\fl1400.tsp" />
192    <None Include="TSPLIB Sample Problems\gr666.opt.tour" />
193    <None Include="TSPLIB Sample Problems\gr666.tsp" />
[2]194  </ItemGroup>
[4065]195  <ItemGroup>
196    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
197      <Visible>False</Visible>
198      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
199      <Install>false</Install>
200    </BootstrapperPackage>
201    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
202      <Visible>False</Visible>
203      <ProductName>.NET Framework 3.5 SP1</ProductName>
204      <Install>true</Install>
205    </BootstrapperPackage>
206    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
207      <Visible>False</Visible>
208      <ProductName>Windows Installer 3.1</ProductName>
209      <Install>true</Install>
210    </BootstrapperPackage>
211  </ItemGroup>
[2]212  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
213  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
214       Other similar extension points exist, see Microsoft.Common.targets.
215  <Target Name="BeforeBuild">
216  </Target>
217  <Target Name="AfterBuild">
218  </Target>
219  -->
[30]220  <PropertyGroup>
[852]221    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
222set ProjectDir=$(ProjectDir)
223set SolutionDir=$(SolutionDir)
224set Outdir=$(Outdir)
225
[2790]226call PreBuildEvent.cmd
[3158]227SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabProblemsTravelingSalesmanPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabProblemsTravelingSalesmanPlugin.cs"</PreBuildEvent>
[30]228  </PropertyGroup>
[4402]229  <PropertyGroup>
230    <PostBuildEvent>copy "$(TargetPath)" "C:\Program Files\HeuristicLab 3.3\"</PostBuildEvent>
231  </PropertyGroup>
[2]232</Project>
Note: See TracBrowser for help on using the repository browser.