Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.ExactOptimization/3.3/HeuristicLab.ExactOptimization-3.3.csproj @ 18210

Last change on this file since 18210 was 18210, checked in by gkronber, 2 years ago

#3017: upgraded all projects to use .NET Framework 4.7.2 and the default language version C# 7.3

File size: 11.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{FA3B9270-48B7-4C77-9FEA-2A6EDE82E909}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.ExactOptimization</RootNamespace>
12    <AssemblyName>HeuristicLab.ExactOptimization-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
14    <SignAssembly>true</SignAssembly>
15    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
16    <FileAlignment>512</FileAlignment>
17    <TargetFrameworkProfile />
18  </PropertyGroup>
19  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27    <Prefer32Bit>false</Prefer32Bit>
28    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
29    <LangVersion>7.3</LangVersion>
30  </PropertyGroup>
31  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32    <DebugType>pdbonly</DebugType>
33    <Optimize>true</Optimize>
34    <OutputPath>bin\Release\</OutputPath>
35    <DefineConstants>TRACE</DefineConstants>
36    <ErrorReport>prompt</ErrorReport>
37    <WarningLevel>4</WarningLevel>
38    <Prefer32Bit>false</Prefer32Bit>
39  </PropertyGroup>
40  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x64</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47    <Prefer32Bit>false</Prefer32Bit>
48  </PropertyGroup>
49  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
50    <OutputPath>bin\Release\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x64</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56    <Prefer32Bit>false</Prefer32Bit>
57  </PropertyGroup>
58  <ItemGroup>
59    <Reference Include="Google.OrTools, Version=6.9.5866.0, Culture=neutral, PublicKeyToken=5d849a56a8afc8c7, processorArchitecture=AMD64">
60      <SpecificVersion>False</SpecificVersion>
61      <HintPath>..\..\bin\Google.OrTools.dll</HintPath>
62      <Private>True</Private>
63    </Reference>
64    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
65      <SpecificVersion>False</SpecificVersion>
66      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
67      <Private>True</Private>
68    </Reference>
69    <Reference Include="System" />
70    <Reference Include="System.Core" />
71    <Reference Include="System.Drawing" />
72    <Reference Include="WindowsBase" />
73  </ItemGroup>
74  <ItemGroup>
75    <Compile Include="LinearProgramming\Algorithms\ResultStatus.cs" />
76    <Compile Include="LinearProgramming\Algorithms\Solvers\BopSolver.cs" />
77    <Compile Include="LinearProgramming\Algorithms\Solvers\CoinOrSolver.cs" />
78    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\ExternalLinearSolver.cs" />
79    <Compile Include="LinearProgramming\Algorithms\Solvers\GlopSolver.cs" />
80    <Compile Include="LinearProgramming\Algorithms\Solvers\GlpkSolver.cs" />
81    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\IExternalLinearSolver.cs" />
82    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\IIncrementalLinearSolver.cs" />
83    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\ExternalIncrementalLinearSolver.cs" />
84    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\IncrementalLinearSolver.cs" />
85    <Compile Include="LinearProgramming\Algorithms\ProblemType.cs" />
86    <Compile Include="LinearProgramming\Algorithms\Solvers\ScipSolver.cs" />
87    <Compile Include="LinearProgramming\Problems\CompiledProblemDefinition.cs" />
88    <Compile Include="LinearProgramming\Problems\FileBasedLinearProblemDefinition.cs" />
89    <Compile Include="LinearProgramming\Problems\LinearProblem.cs" />
90    <Compile Include="LinearProgramming\Algorithms\Solvers\CplexSolver.cs" />
91    <Compile Include="LinearProgramming\Algorithms\Solvers\GurobiSolver.cs" />
92    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\ILinearSolver.cs" />
93    <Compile Include="LinearProgramming\Problems\ILinearProblemDefinition.cs" />
94    <Compile Include="LinearProgramming\Algorithms\LinearProgrammingAlgorithm.cs" />
95    <Compile Include="LinearProgramming\Algorithms\LinearSolverExtensions.cs" />
96    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\LinearSolver.cs" />
97    <Compile Include="LinearProgramming\Problems\ProgrammableLinearProblemDefinition.cs" />
98    <Compile Include="LinearProgramming\Algorithms\ProtoWriteFormat.cs" />
99    <Compile Include="LinearProgramming\Algorithms\SolverResponseStatus.cs" />
100    <Resource Include="LinearProgramming\Templates\CompiledLinearProblemDefinition.cs" />
101    <Compile Include="LinearProgramming\Templates\ScriptTemplates.Designer.cs">
102      <AutoGen>True</AutoGen>
103      <DesignTime>True</DesignTime>
104      <DependentUpon>ScriptTemplates.resx</DependentUpon>
105    </Compile>
106    <Compile Include="Properties\AssemblyInfo.cs" />
107    <Compile Include="Properties\Settings.Designer.cs">
108      <AutoGen>True</AutoGen>
109      <DesignTimeSharedInput>True</DesignTimeSharedInput>
110      <DependentUpon>Settings.settings</DependentUpon>
111    </Compile>
112    <None Include="app.config">
113      <SubType>Designer</SubType>
114    </None>
115    <None Include="Plugin.cs.frame" />
116    <Compile Include="Plugin.cs" />
117    <None Include="Properties\AssemblyInfo.cs.frame" />
118    <None Include="Properties\Settings.settings">
119      <Generator>PublicSettingsSingleFileGenerator</Generator>
120      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
121    </None>
122  </ItemGroup>
123  <ItemGroup>
124    <None Include="HeuristicLab.snk" />
125  </ItemGroup>
126  <ItemGroup>
127    <EmbeddedResource Include="LinearProgramming\Templates\ScriptTemplates.resx">
128      <Generator>ResXFileCodeGenerator</Generator>
129      <SubType>Designer</SubType>
130      <LastGenOutput>ScriptTemplates.Designer.cs</LastGenOutput>
131    </EmbeddedResource>
132  </ItemGroup>
133  <ItemGroup>
134    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
135      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
136      <Name>HeuristicLab.Analysis-3.3</Name>
137      <Private>True</Private>
138    </ProjectReference>
139    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
140      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
141      <Name>HeuristicLab.Collections-3.3</Name>
142      <Private>True</Private>
143    </ProjectReference>
144    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
145      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
146      <Name>HeuristicLab.Common.Resources-3.3</Name>
147      <Private>True</Private>
148    </ProjectReference>
149    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
150      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
151      <Name>HeuristicLab.Common-3.3</Name>
152      <Private>True</Private>
153    </ProjectReference>
154    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
155      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
156      <Name>HeuristicLab.Core-3.3</Name>
157      <Private>True</Private>
158    </ProjectReference>
159    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
160      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
161      <Name>HeuristicLab.Data-3.3</Name>
162      <Private>True</Private>
163    </ProjectReference>
164    <ProjectReference Include="..\..\HeuristicLab.Encodings.BinaryVectorEncoding\3.3\HeuristicLab.Encodings.BinaryVectorEncoding-3.3.csproj">
165      <Project>{66D249C3-A01D-42A8-82A2-919BC8EC3D83}</Project>
166      <Name>HeuristicLab.Encodings.BinaryVectorEncoding-3.3</Name>
167      <Private>True</Private>
168    </ProjectReference>
169    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
170      <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project>
171      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
172      <Private>True</Private>
173    </ProjectReference>
174    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
175      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
176      <Name>HeuristicLab.Optimization-3.3</Name>
177      <Private>True</Private>
178    </ProjectReference>
179    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
180      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
181      <Name>HeuristicLab.Parameters-3.3</Name>
182      <Private>True</Private>
183    </ProjectReference>
184    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
185      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
186      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
187      <Private>True</Private>
188    </ProjectReference>
189    <ProjectReference Include="..\..\HeuristicLab.Problems.Knapsack\3.3\HeuristicLab.Problems.Knapsack-3.3.csproj">
190      <Project>{E10F395F-C8A6-48AD-B470-9AA7A1F43809}</Project>
191      <Name>HeuristicLab.Problems.Knapsack-3.3</Name>
192      <Private>True</Private>
193    </ProjectReference>
194    <ProjectReference Include="..\..\HeuristicLab.Problems.Programmable\3.3\HeuristicLab.Problems.Programmable-3.3.csproj">
195      <Project>{EE07BFF8-B23D-41F5-8AD7-AC9598D7A2C9}</Project>
196      <Name>HeuristicLab.Problems.Programmable-3.3</Name>
197      <Private>True</Private>
198    </ProjectReference>
199    <ProjectReference Include="..\..\HeuristicLab.Problems.TravelingSalesman\3.3\HeuristicLab.Problems.TravelingSalesman-3.3.csproj">
200      <Project>{D767C38D-8014-46B0-9A32-03A3AECCE34A}</Project>
201      <Name>HeuristicLab.Problems.TravelingSalesman-3.3</Name>
202      <Private>True</Private>
203    </ProjectReference>
204    <ProjectReference Include="..\..\HeuristicLab.Scripting\3.3\HeuristicLab.Scripting-3.3.csproj">
205      <Project>{21977CC3-1757-4B3B-87BD-FF817AAA900F}</Project>
206      <Name>HeuristicLab.Scripting-3.3</Name>
207      <Private>True</Private>
208    </ProjectReference>
209  </ItemGroup>
210  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
211  <PropertyGroup>
212    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
213set ProjectDir=$(ProjectDir)
214set SolutionDir=$(SolutionDir)
215set Outdir=$(Outdir)
216
217call PreBuildEvent.cmd</PreBuildEvent>
218  </PropertyGroup>
219  <PropertyGroup>
220    <PostBuildEvent>copy /y "$(TargetPath)" "$(SolutionDir)\bin"
221copy /y "$(TargetPath).config" "$(SolutionDir)\bin"</PostBuildEvent>
222  </PropertyGroup>
223  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
224       Other similar extension points exist, see Microsoft.Common.targets.
225  <Target Name="BeforeBuild">
226  </Target>
227  <Target Name="AfterBuild">
228  </Target>
229  -->
230</Project>
Note: See TracBrowser for help on using the repository browser.