Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Algorithms.MultiObjectiveLocalSearch/3.3/HeuristicLab.Algorithms.MultiObjectiveLocalSearch.csproj @ 17836

Last change on this file since 17836 was 17836, checked in by abeham, 3 years ago

#3103: Add first draft of G-SEMO algorithm

File size: 8.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" 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>{4CCDD23A-9FA3-4B36-9469-87D67E99225F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.MultiObjectiveLocalSearch</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.MultiObjectiveLocalSearch-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <Deterministic>true</Deterministic>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>$(SolutionDir)\bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>$(SolutionDir)\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>$(SolutionDir)\bin\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x64</PlatformTarget>
46    <LangVersion>7.3</LangVersion>
47    <ErrorReport>prompt</ErrorReport>
48  </PropertyGroup>
49  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
50    <OutputPath>$(SolutionDir)\bin\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x64</PlatformTarget>
55    <LangVersion>7.3</LangVersion>
56    <ErrorReport>prompt</ErrorReport>
57  </PropertyGroup>
58  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
59    <DebugSymbols>true</DebugSymbols>
60    <OutputPath>$(SolutionDir)\bin\</OutputPath>
61    <DefineConstants>DEBUG;TRACE</DefineConstants>
62    <DebugType>full</DebugType>
63    <PlatformTarget>x86</PlatformTarget>
64    <LangVersion>7.3</LangVersion>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
68    <OutputPath>$(SolutionDir)\bin\</OutputPath>
69    <DefineConstants>TRACE</DefineConstants>
70    <Optimize>true</Optimize>
71    <DebugType>pdbonly</DebugType>
72    <PlatformTarget>x86</PlatformTarget>
73    <LangVersion>7.3</LangVersion>
74    <ErrorReport>prompt</ErrorReport>
75  </PropertyGroup>
76  <ItemGroup>
77    <Reference Include="HEAL.Attic">
78      <HintPath>$(SolutionDir)\bin\HEAL.Attic.dll</HintPath>
79      <Private>False</Private>
80    </Reference>
81    <Reference Include="System" />
82    <Reference Include="System.Core" />
83    <Reference Include="System.Xml.Linq" />
84    <Reference Include="System.Data.DataSetExtensions" />
85    <Reference Include="Microsoft.CSharp" />
86    <Reference Include="System.Data" />
87    <Reference Include="System.Net.Http" />
88    <Reference Include="System.Xml" />
89  </ItemGroup>
90  <ItemGroup>
91    <Compile Include="GSEMO.cs" />
92    <None Include="Properties\AssemblyInfo.cs.frame" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94  </ItemGroup>
95  <ItemGroup>
96    <None Include="HeuristicLab.snk" />
97    <Compile Include="Plugin.cs" />
98    <None Include="Plugin.cs.frame" />
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
102      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
103      <Name>HeuristicLab.Analysis-3.3</Name>
104      <Private>False</Private>
105    </ProjectReference>
106    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
107      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
108      <Name>HeuristicLab.Collections-3.3</Name>
109      <Private>False</Private>
110    </ProjectReference>
111    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
112      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
113      <Name>HeuristicLab.Common-3.3</Name>
114      <Private>False</Private>
115    </ProjectReference>
116    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
117      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
118      <Name>HeuristicLab.Core-3.3</Name>
119      <Private>False</Private>
120    </ProjectReference>
121    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
122      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
123      <Name>HeuristicLab.Data-3.3</Name>
124      <Private>False</Private>
125    </ProjectReference>
126    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
127      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
128      <Name>HeuristicLab.Operators-3.3</Name>
129      <Private>False</Private>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
132      <Project>{25087811-f74c-4128-bc86-8324271da13e}</Project>
133      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
134      <Private>False</Private>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
137      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
138      <Name>HeuristicLab.Optimization-3.3</Name>
139      <Private>False</Private>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
142      <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>
143      <Name>HeuristicLab.Parameters-3.3</Name>
144      <Private>False</Private>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
147      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
148      <Name>HeuristicLab.Persistence-3.3</Name>
149      <Private>False</Private>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
152      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
153      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
154      <Private>False</Private>
155    </ProjectReference>
156    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
157      <Project>{f4539fb6-4708-40c9-be64-0a1390aea197}</Project>
158      <Name>HeuristicLab.Random-3.3</Name>
159      <Private>False</Private>
160    </ProjectReference>
161    <ProjectReference Include="..\..\HeuristicLab.Selection\3.3\HeuristicLab.Selection-3.3.csproj">
162      <Project>{2c36cd4f-e5f5-43a4-801a-201ea895fe17}</Project>
163      <Name>HeuristicLab.Selection-3.3</Name>
164      <Private>False</Private>
165    </ProjectReference>
166  </ItemGroup>
167  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
168  <PropertyGroup>
169    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
170set ProjectDir=$(ProjectDir)
171set SolutionDir=$(SolutionDir)
172set Outdir=$(Outdir)
173
174call PreBuildEvent.cmd
175</PreBuildEvent>
176  </PropertyGroup>
177</Project>
Note: See TracBrowser for help on using the repository browser.