[2] | 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>
|
---|
[574] | 5 | <ProductVersion>9.0.30729</ProductVersion>
|
---|
[2] | 6 | <SchemaVersion>2.0</SchemaVersion>
|
---|
| 7 | <ProjectGuid>{9EF75B49-D507-44E0-BC5D-C200FDA53B9B}</ProjectGuid>
|
---|
| 8 | <OutputType>Library</OutputType>
|
---|
| 9 | <AppDesignerFolder>Properties</AppDesignerFolder>
|
---|
| 10 | <RootNamespace>HeuristicLab.Routing.TSP</RootNamespace>
|
---|
[582] | 11 | <AssemblyName>HeuristicLab.Routing.TSP-3.2</AssemblyName>
|
---|
[2] | 12 | <SignAssembly>true</SignAssembly>
|
---|
| 13 | <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
|
---|
| 14 | <FileUpgradeFlags>
|
---|
| 15 | </FileUpgradeFlags>
|
---|
| 16 | <OldToolsVersion>2.0</OldToolsVersion>
|
---|
| 17 | <UpgradeBackupLocation>
|
---|
| 18 | </UpgradeBackupLocation>
|
---|
| 19 | </PropertyGroup>
|
---|
| 20 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
---|
| 21 | <DebugSymbols>true</DebugSymbols>
|
---|
| 22 | <DebugType>full</DebugType>
|
---|
| 23 | <Optimize>false</Optimize>
|
---|
| 24 | <OutputPath>bin\Debug\</OutputPath>
|
---|
| 25 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
| 26 | <ErrorReport>prompt</ErrorReport>
|
---|
| 27 | <WarningLevel>4</WarningLevel>
|
---|
| 28 | <DocumentationFile>
|
---|
| 29 | </DocumentationFile>
|
---|
| 30 | </PropertyGroup>
|
---|
| 31 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
---|
| 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>
|
---|
[582] | 38 | <DocumentationFile>bin\Release\HeuristicLab.Routing.TSP-3.2.XML</DocumentationFile>
|
---|
[2] | 39 | <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
---|
| 40 | </PropertyGroup>
|
---|
[564] | 41 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
---|
| 42 | <DebugSymbols>true</DebugSymbols>
|
---|
| 43 | <OutputPath>bin\x86\Debug\</OutputPath>
|
---|
| 44 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
| 45 | <DebugType>full</DebugType>
|
---|
| 46 | <PlatformTarget>x86</PlatformTarget>
|
---|
| 47 | <ErrorReport>prompt</ErrorReport>
|
---|
| 48 | </PropertyGroup>
|
---|
| 49 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
---|
| 50 | <OutputPath>bin\x86\Release\</OutputPath>
|
---|
| 51 | <DefineConstants>TRACE</DefineConstants>
|
---|
[582] | 52 | <DocumentationFile>bin\Release\HeuristicLab.Routing.TSP-3.2.XML</DocumentationFile>
|
---|
[564] | 53 | <Optimize>true</Optimize>
|
---|
| 54 | <DebugType>pdbonly</DebugType>
|
---|
| 55 | <PlatformTarget>x86</PlatformTarget>
|
---|
| 56 | <ErrorReport>prompt</ErrorReport>
|
---|
| 57 | </PropertyGroup>
|
---|
[2] | 58 | <ItemGroup>
|
---|
| 59 | <Reference Include="System" />
|
---|
| 60 | <Reference Include="System.Data" />
|
---|
| 61 | <Reference Include="System.Drawing" />
|
---|
| 62 | <Reference Include="System.Windows.Forms" />
|
---|
| 63 | <Reference Include="System.Xml" />
|
---|
| 64 | </ItemGroup>
|
---|
| 65 | <ItemGroup>
|
---|
| 66 | <Compile Include="TSPTourInjector.cs" />
|
---|
| 67 | <Compile Include="TSPTourView.cs">
|
---|
| 68 | <SubType>UserControl</SubType>
|
---|
| 69 | </Compile>
|
---|
| 70 | <Compile Include="TSPTourView.Designer.cs">
|
---|
| 71 | <DependentUpon>TSPTourView.cs</DependentUpon>
|
---|
| 72 | </Compile>
|
---|
| 73 | <Compile Include="TSPTour.cs" />
|
---|
| 74 | <Compile Include="TSPInjectorView.cs">
|
---|
| 75 | <SubType>UserControl</SubType>
|
---|
| 76 | </Compile>
|
---|
| 77 | <Compile Include="TSPInjectorView.Designer.cs">
|
---|
| 78 | <DependentUpon>TSPInjectorView.cs</DependentUpon>
|
---|
| 79 | </Compile>
|
---|
| 80 | <Compile Include="TSPRoundedEuclideanDistanceMatrixInjector.cs" />
|
---|
| 81 | <Compile Include="TSPDistanceMatrixInjectorBase.cs" />
|
---|
| 82 | <Compile Include="DistanceMatrixPathTSPEvaluator.cs" />
|
---|
| 83 | <Compile Include="PathTSPEvaluatorBase.cs" />
|
---|
| 84 | <Compile Include="HeuristicLabRoutingTSPPlugin.cs" />
|
---|
| 85 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
| 86 | <Compile Include="RoundedEuclideanPathTSPEvaluator.cs" />
|
---|
| 87 | <Compile Include="TSPInjector.cs" />
|
---|
| 88 | <Compile Include="TSPParser.cs" />
|
---|
| 89 | </ItemGroup>
|
---|
| 90 | <ItemGroup>
|
---|
| 91 | <ProjectReference Include="..\HeuristicLab.Charting\HeuristicLab.Charting.csproj">
|
---|
| 92 | <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
|
---|
| 93 | <Name>HeuristicLab.Charting</Name>
|
---|
| 94 | </ProjectReference>
|
---|
| 95 | <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
|
---|
| 96 | <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
|
---|
| 97 | <Name>HeuristicLab.Core</Name>
|
---|
| 98 | </ProjectReference>
|
---|
| 99 | <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
|
---|
| 100 | <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
|
---|
| 101 | <Name>HeuristicLab.Data</Name>
|
---|
| 102 | </ProjectReference>
|
---|
| 103 | <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
|
---|
| 104 | <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
|
---|
| 105 | <Name>HeuristicLab.Operators</Name>
|
---|
| 106 | </ProjectReference>
|
---|
| 107 | <ProjectReference Include="..\HeuristicLab.Permutation\HeuristicLab.Permutation.csproj">
|
---|
| 108 | <Project>{55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}</Project>
|
---|
| 109 | <Name>HeuristicLab.Permutation</Name>
|
---|
| 110 | </ProjectReference>
|
---|
| 111 | <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
|
---|
| 112 | <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
|
---|
| 113 | <Name>HeuristicLab.PluginInfrastructure</Name>
|
---|
| 114 | </ProjectReference>
|
---|
| 115 | </ItemGroup>
|
---|
| 116 | <ItemGroup>
|
---|
| 117 | <None Include="HeuristicLab.snk" />
|
---|
[30] | 118 | <None Include="Properties\AssemblyInfo.frame" />
|
---|
[2] | 119 | </ItemGroup>
|
---|
| 120 | <ItemGroup>
|
---|
| 121 | <EmbeddedResource Include="TSPTourView.resx">
|
---|
| 122 | <DependentUpon>TSPTourView.cs</DependentUpon>
|
---|
| 123 | <SubType>Designer</SubType>
|
---|
| 124 | </EmbeddedResource>
|
---|
| 125 | <EmbeddedResource Include="TSPInjectorView.resx">
|
---|
| 126 | <DependentUpon>TSPInjectorView.cs</DependentUpon>
|
---|
| 127 | <SubType>Designer</SubType>
|
---|
| 128 | </EmbeddedResource>
|
---|
| 129 | </ItemGroup>
|
---|
| 130 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
---|
| 131 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
| 132 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
| 133 | <Target Name="BeforeBuild">
|
---|
| 134 | </Target>
|
---|
| 135 | <Target Name="AfterBuild">
|
---|
| 136 | </Target>
|
---|
| 137 | -->
|
---|
[30] | 138 | <PropertyGroup>
|
---|
[852] | 139 | <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
|
---|
| 140 | set ProjectDir=$(ProjectDir)
|
---|
| 141 | set SolutionDir=$(SolutionDir)
|
---|
| 142 | set Outdir=$(Outdir)
|
---|
| 143 |
|
---|
| 144 | call PreBuildEvent.cmd</PreBuildEvent>
|
---|
[30] | 145 | </PropertyGroup>
|
---|
[2] | 146 | </Project> |
---|