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
RevLine 
[16070]1<?xml version="1.0" encoding="utf-8"?>
[16138]2<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
[16070]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>
[16582]11    <RootNamespace>HeuristicLab.ExactOptimization</RootNamespace>
12    <AssemblyName>HeuristicLab.ExactOptimization-3.3</AssemblyName>
[18210]13    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
[17095]14    <SignAssembly>true</SignAssembly>
15    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[16070]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>
[17095]23    <OutputPath>bin\Debug\</OutputPath>
[16070]24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27    <Prefer32Bit>false</Prefer32Bit>
[16138]28    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[18210]29    <LangVersion>7.3</LangVersion>
[16070]30  </PropertyGroup>
31  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32    <DebugType>pdbonly</DebugType>
33    <Optimize>true</Optimize>
[17095]34    <OutputPath>bin\Release\</OutputPath>
[16070]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>
[17095]42    <OutputPath>bin\Debug\</OutputPath>
[16070]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'">
[17095]50    <OutputPath>bin\Release\</OutputPath>
[16070]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>
[16234]59    <Reference Include="Google.OrTools, Version=6.9.5866.0, Culture=neutral, PublicKeyToken=5d849a56a8afc8c7, processorArchitecture=AMD64">
[16070]60      <SpecificVersion>False</SpecificVersion>
[16138]61      <HintPath>..\..\bin\Google.OrTools.dll</HintPath>
[17095]62      <Private>True</Private>
[16070]63    </Reference>
[16736]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>
[17095]67      <Private>True</Private>
[16736]68    </Reference>
[16070]69    <Reference Include="System" />
70    <Reference Include="System.Core" />
[16172]71    <Reference Include="System.Drawing" />
[16405]72    <Reference Include="WindowsBase" />
[16070]73  </ItemGroup>
74  <ItemGroup>
[16582]75    <Compile Include="LinearProgramming\Algorithms\ResultStatus.cs" />
[16233]76    <Compile Include="LinearProgramming\Algorithms\Solvers\BopSolver.cs" />
77    <Compile Include="LinearProgramming\Algorithms\Solvers\CoinOrSolver.cs" />
[16405]78    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\ExternalLinearSolver.cs" />
[16233]79    <Compile Include="LinearProgramming\Algorithms\Solvers\GlopSolver.cs" />
80    <Compile Include="LinearProgramming\Algorithms\Solvers\GlpkSolver.cs" />
[16405]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" />
[16373]85    <Compile Include="LinearProgramming\Algorithms\ProblemType.cs" />
[16233]86    <Compile Include="LinearProgramming\Algorithms\Solvers\ScipSolver.cs" />
[16405]87    <Compile Include="LinearProgramming\Problems\CompiledProblemDefinition.cs" />
[16582]88    <Compile Include="LinearProgramming\Problems\FileBasedLinearProblemDefinition.cs" />
89    <Compile Include="LinearProgramming\Problems\LinearProblem.cs" />
[16233]90    <Compile Include="LinearProgramming\Algorithms\Solvers\CplexSolver.cs" />
91    <Compile Include="LinearProgramming\Algorithms\Solvers\GurobiSolver.cs" />
[16405]92    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\ILinearSolver.cs" />
[16582]93    <Compile Include="LinearProgramming\Problems\ILinearProblemDefinition.cs" />
[16172]94    <Compile Include="LinearProgramming\Algorithms\LinearProgrammingAlgorithm.cs" />
[16405]95    <Compile Include="LinearProgramming\Algorithms\LinearSolverExtensions.cs" />
96    <Compile Include="LinearProgramming\Algorithms\Solvers\Base\LinearSolver.cs" />
[16582]97    <Compile Include="LinearProgramming\Problems\ProgrammableLinearProblemDefinition.cs" />
[16405]98    <Compile Include="LinearProgramming\Algorithms\ProtoWriteFormat.cs" />
[16582]99    <Compile Include="LinearProgramming\Algorithms\SolverResponseStatus.cs" />
100    <Resource Include="LinearProgramming\Templates\CompiledLinearProblemDefinition.cs" />
[16172]101    <Compile Include="LinearProgramming\Templates\ScriptTemplates.Designer.cs">
102      <AutoGen>True</AutoGen>
103      <DesignTime>True</DesignTime>
104      <DependentUpon>ScriptTemplates.resx</DependentUpon>
105    </Compile>
[16070]106    <Compile Include="Properties\AssemblyInfo.cs" />
[16234]107    <Compile Include="Properties\Settings.Designer.cs">
108      <AutoGen>True</AutoGen>
109      <DesignTimeSharedInput>True</DesignTimeSharedInput>
[16288]110      <DependentUpon>Settings.settings</DependentUpon>
[16234]111    </Compile>
[16373]112    <None Include="app.config">
113      <SubType>Designer</SubType>
114    </None>
[16070]115    <None Include="Plugin.cs.frame" />
116    <Compile Include="Plugin.cs" />
117    <None Include="Properties\AssemblyInfo.cs.frame" />
[16234]118    <None Include="Properties\Settings.settings">
119      <Generator>PublicSettingsSingleFileGenerator</Generator>
120      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
121    </None>
[16070]122  </ItemGroup>
123  <ItemGroup>
124    <None Include="HeuristicLab.snk" />
125  </ItemGroup>
[16172]126  <ItemGroup>
[16234]127    <EmbeddedResource Include="LinearProgramming\Templates\ScriptTemplates.resx">
128      <Generator>ResXFileCodeGenerator</Generator>
[16582]129      <SubType>Designer</SubType>
[16234]130      <LastGenOutput>ScriptTemplates.Designer.cs</LastGenOutput>
131    </EmbeddedResource>
132  </ItemGroup>
133  <ItemGroup>
[16233]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>
[17095]137      <Private>True</Private>
[16233]138    </ProjectReference>
[16172]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>
[17095]142      <Private>True</Private>
[16172]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>
[17095]147      <Private>True</Private>
[16172]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>
[17095]152      <Private>True</Private>
[16172]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>
[17095]157      <Private>True</Private>
[16172]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>
[17095]162      <Private>True</Private>
[16172]163    </ProjectReference>
[16717]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>
[17095]167      <Private>True</Private>
[16717]168    </ProjectReference>
[16582]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>
[17095]172      <Private>True</Private>
[16582]173    </ProjectReference>
[16172]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>
[17095]177      <Private>True</Private>
[16172]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>
[17095]182      <Private>True</Private>
[16172]183    </ProjectReference>
[16234]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>
[17095]187      <Private>True</Private>
[16234]188    </ProjectReference>
[16717]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>
[17095]192      <Private>True</Private>
[16717]193    </ProjectReference>
[16172]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>
[17095]197      <Private>True</Private>
[16172]198    </ProjectReference>
[16582]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>
[17095]202      <Private>True</Private>
[16582]203    </ProjectReference>
[16172]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>
[17095]207      <Private>True</Private>
[16172]208    </ProjectReference>
209  </ItemGroup>
[16070]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>
[17095]220    <PostBuildEvent>copy /y "$(TargetPath)" "$(SolutionDir)\bin"
221copy /y "$(TargetPath).config" "$(SolutionDir)\bin"</PostBuildEvent>
[16070]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.