Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/HeuristicLab.Algorithms.MOCMAEvolutionStrategy-3.3.csproj @ 18027

Last change on this file since 18027 was 18027, checked in by dpiringe, 3 years ago

#3026

  • merged trunk into branch
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.17.0, Version=3.17.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
76      <SpecificVersion>False</SpecificVersion>
77      <HintPath>..\..\bin\ALGLIB-3.17.0.dll</HintPath>
78      <Private>False</Private>
79    </Reference>
80    <Reference Include="System" />
81    <Reference Include="System.Core" />
82    <Reference Include="System.Drawing" />
83  </ItemGroup>
84  <ItemGroup>
85    <None Include="Plugin.cs.frame" />
86    <None Include="Properties\AssemblyInfo.cs.frame" />
87  </ItemGroup>
88  <ItemGroup>
89    <Compile Include="Indicators\MinimalDistanceIndicator.cs" />
90    <Compile Include="Indicators\CrowdingIndicator.cs" />
91    <Compile Include="Indicators\HypervolumeIndicator.cs" />
92    <Compile Include="IIndicator.cs" />
93    <Compile Include="Individual.cs" />
94    <Compile Include="MOCMAEvolutionStrategy.cs" />
95    <Compile Include="Plugin.cs" />
96    <Compile Include="Properties\AssemblyInfo.cs" />
97    <Compile Include="DoubleMatrixHelper.cs" />
98  </ItemGroup>
99  <ItemGroup>
100    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
101      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
102      <Name>HeuristicLab.Analysis-3.3</Name>
103      <Private>False</Private>
104    </ProjectReference>
105    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
106      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
107      <Name>HeuristicLab.Collections-3.3</Name>
108      <Private>False</Private>
109    </ProjectReference>
110    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
111      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
112      <Name>HeuristicLab.Common-3.3</Name>
113      <Private>False</Private>
114    </ProjectReference>
115    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
116      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
117      <Name>HeuristicLab.Core-3.3</Name>
118      <Private>False</Private>
119    </ProjectReference>
120    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
121      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
122      <Name>HeuristicLab.Data-3.3</Name>
123      <Private>False</Private>
124    </ProjectReference>
125    <ProjectReference Include="..\..\HeuristicLab.Encodings.RealVectorEncoding\3.3\HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj">
126      <Project>{BB6D334A-4BB6-4674-9883-31A6EBB32CAB}</Project>
127      <Name>HeuristicLab.Encodings.RealVectorEncoding-3.3</Name>
128      <Private>False</Private>
129    </ProjectReference>
130    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
131      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
132      <Name>HeuristicLab.Operators-3.3</Name>
133      <Private>False</Private>
134    </ProjectReference>
135    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
136      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
137      <Name>HeuristicLab.Optimization-3.3</Name>
138      <Private>False</Private>
139    </ProjectReference>
140    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
141      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
142      <Name>HeuristicLab.Parameters-3.3</Name>
143      <Private>False</Private>
144    </ProjectReference>
145    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
146      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
147      <Name>HeuristicLab.Persistence-3.3</Name>
148      <Private>False</Private>
149    </ProjectReference>
150    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
151      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
152      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
153      <Private>False</Private>
154    </ProjectReference>
155    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
156      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
157      <Name>HeuristicLab.Problems.Instances-3.3</Name>
158      <Private>False</Private>
159    </ProjectReference>
160    <ProjectReference Include="..\..\HeuristicLab.Problems.TestFunctions.MultiObjective\3.3\HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.csproj">
161      <Project>{D53E8E48-CFAA-4F57-AC35-63BEF4476159}</Project>
162      <Name>HeuristicLab.Problems.TestFunctions.MultiObjective-3.3</Name>
163      <Private>False</Private>
164    </ProjectReference>
165    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
166      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
167      <Name>HeuristicLab.Random-3.3</Name>
168      <Private>False</Private>
169    </ProjectReference>
170  </ItemGroup>
171  <ItemGroup>
172    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
173      <SpecificVersion>False</SpecificVersion>
174      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
175      <Private>False</Private>
176    </Reference>
177  </ItemGroup>
178  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
179  <PropertyGroup>
180    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
181set ProjectDir=$(ProjectDir)
182set SolutionDir=$(SolutionDir)
183set Outdir=$(Outdir)
184
185call PreBuildEvent.cmd
186    </PreBuildEvent>
187    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
188export ProjectDir=$(ProjectDir)
189export SolutionDir=$(SolutionDir)
190
191$SolutionDir/PreBuildEvent.sh
192    </PreBuildEvent>
193  </PropertyGroup>
194  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
195       Other similar extension points exist, see Microsoft.Common.targets.
196  <Target Name="BeforeBuild">
197  </Target>
198  <Target Name="AfterBuild">
199  </Target>
200  -->
201</Project>
Note: See TracBrowser for help on using the repository browser.