Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/BenchmarkDataGenerator/BenchmarkDataGenerator.csproj @ 15578

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

#1614: Added program to generate new benchmark instances based on QAPLIB (same flow matrices, clustered distance matrices and randomly chosen installation costs, demands, and capacities)

File size: 3.3 KB
Line 
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>{90FDB828-617C-4FA6-AF14-17B750770CBF}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <RootNamespace>BenchmarkDataGenerator</RootNamespace>
10    <AssemblyName>BenchmarkDataGenerator</AssemblyName>
11    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>AnyCPU</PlatformTarget>
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <PlatformTarget>AnyCPU</PlatformTarget>
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="alglibnet2, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
36      <SpecificVersion>False</SpecificVersion>
37      <HintPath>.\alglibnet2.dll</HintPath>
38    </Reference>
39    <Reference Include="HeuristicLab.Common-3.3">
40      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
41    </Reference>
42    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
43      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
44    </Reference>
45    <Reference Include="HeuristicLab.Problems.Instances-3.3">
46      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
47    </Reference>
48    <Reference Include="HeuristicLab.Problems.Instances.QAPLIB-3.3">
49      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances.QAPLIB-3.3.dll</HintPath>
50    </Reference>
51    <Reference Include="System" />
52    <Reference Include="System.Core" />
53    <Reference Include="System.Xml.Linq" />
54    <Reference Include="System.Data.DataSetExtensions" />
55    <Reference Include="Microsoft.CSharp" />
56    <Reference Include="System.Data" />
57    <Reference Include="System.Net.Http" />
58    <Reference Include="System.Xml" />
59  </ItemGroup>
60  <ItemGroup>
61    <Compile Include="Program.cs" />
62    <Compile Include="Properties\AssemblyInfo.cs" />
63  </ItemGroup>
64  <ItemGroup>
65    <None Include="App.config" />
66  </ItemGroup>
67  <ItemGroup>
68    <Content Include="alglibnet2.dll" />
69  </ItemGroup>
70  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
71</Project>
Note: See TracBrowser for help on using the repository browser.