Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Algorithms.MemPR/3.3/HeuristicLab.Algorithms.MemPR-3.3.csproj @ 14453

Last change on this file since 14453 was 14450, checked in by abeham, 8 years ago

#2701: working on MemPR implementation

File size: 10.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>{9D274421-6332-4FBC-AAE4-467ACE27C368}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.MemPR</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.MemPR-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>..\..\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  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>..\..\bin\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x64</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
49    <OutputPath>..\..\bin\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x64</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56  </PropertyGroup>
57  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>..\..\bin\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x86</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
65  </PropertyGroup>
66  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
67    <OutputPath>..\..\bin\</OutputPath>
68    <DefineConstants>TRACE</DefineConstants>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
74  </PropertyGroup>
75  <ItemGroup>
76    <Reference Include="System" />
77    <Reference Include="System.Core" />
78    <Reference Include="System.Drawing" />
79    <Reference Include="System.Xml.Linq" />
80    <Reference Include="System.Data.DataSetExtensions" />
81    <Reference Include="Microsoft.CSharp" />
82    <Reference Include="System.Data" />
83    <Reference Include="System.Net.Http" />
84    <Reference Include="System.Xml" />
85  </ItemGroup>
86  <ItemGroup>
87    <Compile Include="Binary\BinaryMemPR.cs" />
88    <Compile Include="Binary\BinaryMemPRContext.cs" />
89    <Compile Include="Binary\BinarySolutionSubspace.cs" />
90    <Compile Include="Binary\LocalSearch\ExhaustiveBitflipSubspace.cs" />
91    <Compile Include="Binary\LocalSearch\ExhaustiveBitflip.cs" />
92    <Compile Include="Binary\LocalSearch\StaticAPI\ExhaustiveBitflip.cs" />
93    <Compile Include="Binary\SolutionModel\Univariate\StaticAPI\Trainer.cs" />
94    <Compile Include="Binary\SolutionModel\Univariate\UnivariateSolutionModel.cs" />
95    <Compile Include="Binary\SolutionModel\Univariate\BiasedModelTrainer.cs" />
96    <Compile Include="Binary\SolutionModel\Univariate\UnbiasedModelTrainer.cs" />
97    <Compile Include="Interfaces\Interfaces.cs" />
98    <Compile Include="MemPRAlgorithm.cs" />
99    <Compile Include="Permutation\PermutationMemPR.cs" />
100    <Compile Include="Permutation\PermutationMemPRContext.cs" />
101    <Compile Include="Permutation\LocalSearch\ExhaustiveHillClimbSubspace.cs" />
102    <Compile Include="Permutation\LocalSearch\ExhaustiveHillClimb.cs" />
103    <Compile Include="Permutation\PermutationSolutionSubspace.cs" />
104    <Compile Include="Permutation\LocalSearch\StaticAPI\Exhaustive.cs" />
105    <Compile Include="Permutation\LocalSearch\StaticAPI\Exhaustive1Shift.cs" />
106    <Compile Include="Permutation\LocalSearch\StaticAPI\Exhaustive2Opt.cs" />
107    <Compile Include="Permutation\LocalSearch\StaticAPI\ExhaustiveSwap2.cs" />
108    <Compile Include="Permutation\SimilarityCalculator.cs" />
109    <Compile Include="Permutation\SolutionModel\Univariate\StaticAPI\Trainer.cs" />
110    <Compile Include="Permutation\SolutionModel\Univariate\UnbiasedModelTrainer.cs" />
111    <Compile Include="Permutation\SolutionModel\Univariate\UnivariateRelativeModel.cs" />
112    <Compile Include="Permutation\SolutionModel\Univariate\UnivariateAbsoluteModel.cs" />
113    <Compile Include="SingleObjectiveSolutionScope.cs" />
114    <Compile Include="MemPRContext.cs" />
115    <Compile Include="Plugin.cs" />
116    <Compile Include="Properties\AssemblyInfo.cs" />
117    <Compile Include="Util\CkMeans1D.cs" />
118    <Compile Include="Util\EvaluationWrapper.cs" />
119    <Compile Include="Util\FitnessComparer.cs" />
120  </ItemGroup>
121  <ItemGroup>
122    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
123      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
124      <Name>HeuristicLab.Analysis-3.3</Name>
125      <Private>False</Private>
126    </ProjectReference>
127    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
128      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
129      <Name>HeuristicLab.Collections-3.3</Name>
130      <Private>False</Private>
131    </ProjectReference>
132    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
133      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
134      <Name>HeuristicLab.Common.Resources-3.3</Name>
135      <Private>False</Private>
136    </ProjectReference>
137    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
138      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
139      <Name>HeuristicLab.Common-3.3</Name>
140      <Private>False</Private>
141    </ProjectReference>
142    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
143      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
144      <Name>HeuristicLab.Core-3.3</Name>
145      <Private>False</Private>
146    </ProjectReference>
147    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
148      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
149      <Name>HeuristicLab.Data-3.3</Name>
150      <Private>False</Private>
151    </ProjectReference>
152    <ProjectReference Include="..\..\HeuristicLab.Encodings.BinaryVectorEncoding\3.3\HeuristicLab.Encodings.BinaryVectorEncoding-3.3.csproj">
153      <Project>{66d249c3-a01d-42a8-82a2-919bc8ec3d83}</Project>
154      <Name>HeuristicLab.Encodings.BinaryVectorEncoding-3.3</Name>
155      <Private>False</Private>
156    </ProjectReference>
157    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
158      <Project>{dbecb8b0-b166-4133-baf1-ed67c3fd7fca}</Project>
159      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
160      <Private>False</Private>
161    </ProjectReference>
162    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
163      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
164      <Name>HeuristicLab.Operators-3.3</Name>
165      <Private>False</Private>
166    </ProjectReference>
167    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
168      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
169      <Name>HeuristicLab.Optimization-3.3</Name>
170      <Private>False</Private>
171    </ProjectReference>
172    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
173      <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>
174      <Name>HeuristicLab.Parameters-3.3</Name>
175      <Private>False</Private>
176    </ProjectReference>
177    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
178      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
179      <Name>HeuristicLab.Persistence-3.3</Name>
180      <Private>False</Private>
181    </ProjectReference>
182    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
183      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
184      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
185      <Private>False</Private>
186    </ProjectReference>
187    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
188      <Project>{f4539fb6-4708-40c9-be64-0a1390aea197}</Project>
189      <Name>HeuristicLab.Random-3.3</Name>
190      <Private>False</Private>
191    </ProjectReference>
192  </ItemGroup>
193  <ItemGroup>
194    <None Include="HeuristicLab.snk" />
195  </ItemGroup>
196  <ItemGroup />
197  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
198  <PropertyGroup>
199    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
200set ProjectDir=$(ProjectDir)
201set SolutionDir=$(SolutionDir)
202set Outdir=$(Outdir)
203
204call PreBuildEvent.cmd</PreBuildEvent>
205  </PropertyGroup>
206  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
207       Other similar extension points exist, see Microsoft.Common.targets.
208  <Target Name="BeforeBuild">
209  </Target>
210  <Target Name="AfterBuild">
211  </Target>
212  -->
213</Project>
Note: See TracBrowser for help on using the repository browser.