Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/GQAPSolver/GQAPSolver.csproj @ 15890

Last change on this file since 15890 was 15890, checked in by abeham, 6 years ago

#1614: Added console app for irace parameter optimization

File size: 4.6 KB
RevLine 
[15890]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{6EC9E8AB-3547-4EC2-901B-6ACD494BE434}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <RootNamespace>GQAPSolver</RootNamespace>
10    <AssemblyName>GQAPSolver</AssemblyName>
11    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13  </PropertyGroup>
14  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15    <PlatformTarget>AnyCPU</PlatformTarget>
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>bin\Debug\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <PlatformTarget>AnyCPU</PlatformTarget>
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="CommandLine, Version=2.2.1.0, Culture=neutral, PublicKeyToken=de6f01bd326f8c32, processorArchitecture=MSIL">
35      <HintPath>..\packages\CommandLineParser.2.2.1\lib\net45\CommandLine.dll</HintPath>
36    </Reference>
37    <Reference Include="HeuristicLab.Collections-3.3">
38      <HintPath>..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Common-3.3">
41      <HintPath>..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Core-3.3">
44      <HintPath>..\..\..\trunk\bin\HeuristicLab.Core-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Data-3.3">
47      <HintPath>..\..\..\trunk\bin\HeuristicLab.Data-3.3.dll</HintPath>
48    </Reference>
49    <Reference Include="HeuristicLab.Problems.Instances-3.3">
50      <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Problems.Instances.CordeauGQAP-3.3">
53      <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.CordeauGQAP-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="System" />
56    <Reference Include="System.Core" />
57    <Reference Include="System.Xml.Linq" />
58    <Reference Include="System.Data.DataSetExtensions" />
59    <Reference Include="Microsoft.CSharp" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Net.Http" />
62    <Reference Include="System.Xml" />
63  </ItemGroup>
64  <ItemGroup>
65    <Compile Include="Program.cs" />
66    <Compile Include="Properties\AssemblyInfo.cs" />
67  </ItemGroup>
68  <ItemGroup>
69    <None Include="App.config" />
70    <None Include="packages.config" />
71  </ItemGroup>
72  <ItemGroup>
73    <ProjectReference Include="..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj">
74      <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project>
75      <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name>
76    </ProjectReference>
77    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
78      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
79      <Name>HeuristicLab.Optimization-3.3</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3.csproj">
82      <Project>{577239ec-7d7f-4505-a0a4-572e34010dba}</Project>
83      <Name>HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3</Name>
84    </ProjectReference>
85    <ProjectReference Include="..\HeuristicLab.Problems.GeneralizedQuadraticAssignment\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.csproj">
86      <Project>{c739e6d2-5680-4804-a810-8017da0c238f}</Project>
87      <Name>HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3</Name>
88    </ProjectReference>
89  </ItemGroup>
90  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
91</Project>
Note: See TracBrowser for help on using the repository browser.