Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.LinearOrdering/3.3/HeuristicLab.Problems.Instances.LinearOrdering-3.3.csproj @ 15632

Last change on this file since 15632 was 15541, checked in by fholzing, 7 years ago

#2864: CleanUp of old code, added LOP benchmark instances

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{648F0BF0-6301-448C-816F-DEB1E65EC73F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.Instances.LinearOrdering</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.Instances.LinearOrdering-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="HeuristicLab.Common-3.3">
41      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="System" />
47    <Reference Include="System.Core" />
48    <Reference Include="System.IO.Compression" />
49    <Reference Include="System.Xml.Linq" />
50    <Reference Include="System.Data.DataSetExtensions" />
51    <Reference Include="Microsoft.CSharp" />
52    <Reference Include="System.Data" />
53    <Reference Include="System.Net.Http" />
54    <Reference Include="System.Xml" />
55  </ItemGroup>
56  <ItemGroup>
57    <Compile Include="LOPDataDescriptor.cs" />
58    <Compile Include="LOPXLOLIBInstanceProvider.cs" />
59    <Compile Include="LOPSPECInstanceProvider.cs" />
60    <Compile Include="LOPSGBInstanceProvider.cs" />
61    <Compile Include="LOPRANDBInstanceProvider.cs" />
62    <Compile Include="LOPRANDA2InstanceProvider.cs" />
63    <Compile Include="LOPRANDA1InstanceProvider.cs" />
64    <Compile Include="LOPMBInstanceProvider.cs" />
65    <Compile Include="LOPIOInstanceProvider.cs" />
66    <Compile Include="LOPParser.cs" />
67    <Compile Include="Plugin.cs" />
68    <Compile Include="Properties\AssemblyInfo.cs" />
69  </ItemGroup>
70  <ItemGroup>
71    <EmbeddedResource Include="Data\IO.zip" />
72    <EmbeddedResource Include="Data\MB.zip" />
73    <EmbeddedResource Include="Data\RANDA1.zip" />
74    <EmbeddedResource Include="Data\RANDA2.zip" />
75    <EmbeddedResource Include="Data\RANDB.zip" />
76    <EmbeddedResource Include="Data\SGB.zip" />
77    <EmbeddedResource Include="Data\SPEC.zip" />
78    <EmbeddedResource Include="Data\XLOLIB.zip" />
79    <None Include="HeuristicLab.snk" />
80    <None Include="Plugin.cs.frame" />
81    <None Include="Properties\AssemblyInfo.cs.frame" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
85      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
86      <Name>HeuristicLab.Problems.Instances-3.3</Name>
87    </ProjectReference>
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90  <PropertyGroup>
91    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
92set ProjectDir=$(ProjectDir)
93set SolutionDir=$(SolutionDir)
94set Outdir=$(Outdir)
95
96call PreBuildEvent.cmd
97</PreBuildEvent>
98  </PropertyGroup>
99  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
100       Other similar extension points exist, see Microsoft.Common.targets.
101  <Target Name="BeforeBuild">
102  </Target>
103  <Target Name="AfterBuild">
104  </Target>
105  -->
106</Project>
Note: See TracBrowser for help on using the repository browser.