Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2747_CFSAP/HeuristicLab.Problems.Instances.CFSAP/3.3/HeuristicLab.Problems.Instances.CFSAP-3.3.csproj @ 17945

Last change on this file since 17945 was 14757, checked in by abeham, 8 years ago

#2747: Added CFSAP with optimal (polynomial) assignment algorithm

File size: 4.6 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>{20649F62-E17D-447D-B9F5-F5514D977D3C}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.Instances.CFSAP</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.Instances.CFSAP-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>..\..\..\..\trunk\sources\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, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
41      <SpecificVersion>False</SpecificVersion>
42      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
43      <Private>False</Private>
44    </Reference>
45    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
46      <SpecificVersion>False</SpecificVersion>
47      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
48      <Private>False</Private>
49    </Reference>
50    <Reference Include="System" />
51    <Reference Include="System.Core" />
52    <Reference Include="System.IO.Compression" />
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="BozejkoCFSAPDataDescriptor.cs" />
62    <Compile Include="BozejkoCFSAPInstanceProvider.cs" />
63    <EmbeddedResource Include="Data\BozejkoCFSAP.zip" />
64    <None Include="HeuristicLab.snk" />
65    <None Include="Plugin.cs.frame" />
66    <Compile Include="BozejkoCFSAPParser.cs" />
67    <Compile Include="Plugin.cs" />
68    <None Include="Properties\AssemblyInfo.cs.frame" />
69    <Compile Include="Properties\AssemblyInfo.cs" />
70  </ItemGroup>
71  <ItemGroup>
72    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
73      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
74      <Name>HeuristicLab.Problems.Instances-3.3</Name>
75      <Private>False</Private>
76    </ProjectReference>
77  </ItemGroup>
78  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
79  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
80       Other similar extension points exist, see Microsoft.Common.targets.
81  <Target Name="BeforeBuild">
82  </Target>
83  <Target Name="AfterBuild">
84  </Target>
85  -->
86  <PropertyGroup>
87    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
88      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89      set ProjectDir=$(ProjectDir)
90      set SolutionDir=$(SolutionDir)
91      set Outdir=$(Outdir)
92
93      call PreBuildEvent.cmd
94    </PreBuildEvent>
95    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
96      export ProjectDir=$(ProjectDir)
97      export SolutionDir=$(SolutionDir)
98
99      $SolutionDir/PreBuildEvent.sh
100    </PreBuildEvent>
101  </PropertyGroup>
102</Project>
Note: See TracBrowser for help on using the repository browser.