Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/HeuristicLab.Algorithms.MOCMAEvolutionStrategy-3.3.csproj @ 16454

Last change on this file since 16454 was 16454, checked in by jkarder, 5 years ago

#2520: added nuget references to HEAL.Fossil (which has not been published yet)

File size: 9.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>{0E2E224F-E9B2-41F3-B510-09183EEBA2AF}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.MOCMAEvolutionStrategy</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.MOCMAEvolutionStrategy-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>$(SolutionDir)\bin\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23    <LangVersion>5</LangVersion>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>$(SolutionDir)\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32    <LangVersion>5</LangVersion>
33  </PropertyGroup>
34  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
35    <DebugSymbols>true</DebugSymbols>
36    <OutputPath>$(SolutionDir)\bin\</OutputPath>
37    <DefineConstants>DEBUG;TRACE</DefineConstants>
38    <DebugType>full</DebugType>
39    <PlatformTarget>x64</PlatformTarget>
40    <LangVersion>5</LangVersion>
41    <ErrorReport>prompt</ErrorReport>
42    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
43  </PropertyGroup>
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
45    <OutputPath>$(SolutionDir)\bin\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <Optimize>true</Optimize>
48    <DebugType>pdbonly</DebugType>
49    <PlatformTarget>x64</PlatformTarget>
50    <LangVersion>5</LangVersion>
51    <ErrorReport>prompt</ErrorReport>
52    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
53  </PropertyGroup>
54  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
55    <DebugSymbols>true</DebugSymbols>
56    <OutputPath>$(SolutionDir)\bin\</OutputPath>
57    <DefineConstants>DEBUG;TRACE</DefineConstants>
58    <DebugType>full</DebugType>
59    <PlatformTarget>x86</PlatformTarget>
60    <LangVersion>5</LangVersion>
61    <ErrorReport>prompt</ErrorReport>
62    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
63  </PropertyGroup>
64  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
65    <OutputPath>$(SolutionDir)\bin\</OutputPath>
66    <DefineConstants>TRACE</DefineConstants>
67    <Optimize>true</Optimize>
68    <DebugType>pdbonly</DebugType>
69    <PlatformTarget>x86</PlatformTarget>
70    <LangVersion>5</LangVersion>
71    <ErrorReport>prompt</ErrorReport>
72    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
73  </PropertyGroup>
74  <ItemGroup>
75    <Reference Include="ALGLIB-3.7.0">
76      <HintPath>..\..\bin\ALGLIB-3.7.0.dll</HintPath>
77      <Private>False</Private>
78    </Reference>
79    <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
80      <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
81    </Reference>
82    <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
83      <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath>
84    </Reference>
85    <Reference Include="System" />
86    <Reference Include="System.Core" />
87    <Reference Include="System.Drawing" />
88  </ItemGroup>
89  <ItemGroup>
90    <None Include="packages.config" />
91    <None Include="Plugin.cs.frame" />
92    <None Include="Properties\AssemblyInfo.cs.frame" />
93  </ItemGroup>
94  <ItemGroup>
95    <Compile Include="Indicators\MinimalDistanceIndicator.cs" />
96    <Compile Include="Indicators\CrowdingIndicator.cs" />
97    <Compile Include="Indicators\HypervolumeIndicator.cs" />
98    <Compile Include="IIndicator.cs" />
99    <Compile Include="Individual.cs" />
100    <Compile Include="MOCMAEvolutionStrategy.cs" />
101    <Compile Include="Plugin.cs" />
102    <Compile Include="Properties\AssemblyInfo.cs" />
103    <Compile Include="DoubleMatrixHelper.cs" />
104  </ItemGroup>
105  <ItemGroup>
106    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
107      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
108      <Name>HeuristicLab.Analysis-3.3</Name>
109      <Private>False</Private>
110    </ProjectReference>
111    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
112      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
113      <Name>HeuristicLab.Collections-3.3</Name>
114      <Private>False</Private>
115    </ProjectReference>
116    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
117      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
118      <Name>HeuristicLab.Common-3.3</Name>
119      <Private>False</Private>
120    </ProjectReference>
121    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
122      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
123      <Name>HeuristicLab.Core-3.3</Name>
124      <Private>False</Private>
125    </ProjectReference>
126    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
127      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
128      <Name>HeuristicLab.Data-3.3</Name>
129      <Private>False</Private>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Encodings.RealVectorEncoding\3.3\HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj">
132      <Project>{BB6D334A-4BB6-4674-9883-31A6EBB32CAB}</Project>
133      <Name>HeuristicLab.Encodings.RealVectorEncoding-3.3</Name>
134      <Private>False</Private>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
137      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
138      <Name>HeuristicLab.Operators-3.3</Name>
139      <Private>False</Private>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
142      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
143      <Name>HeuristicLab.Optimization-3.3</Name>
144      <Private>False</Private>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
147      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
148      <Name>HeuristicLab.Parameters-3.3</Name>
149      <Private>False</Private>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
152      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
153      <Name>HeuristicLab.Persistence-3.3</Name>
154      <Private>False</Private>
155    </ProjectReference>
156    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
157      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
158      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
159      <Private>False</Private>
160    </ProjectReference>
161    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
162      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
163      <Name>HeuristicLab.Problems.Instances-3.3</Name>
164      <Private>False</Private>
165    </ProjectReference>
166    <ProjectReference Include="..\..\HeuristicLab.Problems.TestFunctions.MultiObjective\3.3\HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.csproj">
167      <Project>{D53E8E48-CFAA-4F57-AC35-63BEF4476159}</Project>
168      <Name>HeuristicLab.Problems.TestFunctions.MultiObjective-3.3</Name>
169      <Private>False</Private>
170    </ProjectReference>
171    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
172      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
173      <Name>HeuristicLab.Random-3.3</Name>
174      <Private>False</Private>
175    </ProjectReference>
176  </ItemGroup>
177  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
178  <PropertyGroup>
179    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
180set ProjectDir=$(ProjectDir)
181set SolutionDir=$(SolutionDir)
182set Outdir=$(Outdir)
183
184call PreBuildEvent.cmd
185    </PreBuildEvent>
186    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
187export ProjectDir=$(ProjectDir)
188export SolutionDir=$(SolutionDir)
189
190$SolutionDir/PreBuildEvent.sh
191    </PreBuildEvent>
192  </PropertyGroup>
193  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
194       Other similar extension points exist, see Microsoft.Common.targets.
195  <Target Name="BeforeBuild">
196  </Target>
197  <Target Name="AfterBuild">
198  </Target>
199  -->
200</Project>
Note: See TracBrowser for help on using the repository browser.