- Timestamp:
- 09/14/18 18:46:16 (6 years ago)
- Location:
- branches/2924_DotNetCoreMigration/HeuristicLab.Problems.Orienteering/3.3
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2924_DotNetCoreMigration/HeuristicLab.Problems.Orienteering/3.3/HeuristicLab.Problems.Orienteering-3.3.csproj
r16144 r16147 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project ToolsVersion="12.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')" /> 2 <Project Sdk="Microsoft.NET.Sdk"> 4 3 <PropertyGroup> 5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 7 <ProjectGuid>{D1EFA4CC-909F-41D5-9C1F-C3AF1957A372}</ProjectGuid> 8 <OutputType>Library</OutputType> 9 <AppDesignerFolder>Properties</AppDesignerFolder> 4 <TargetFramework>netstandard2.0</TargetFramework> 5 <Copyright>(c) 2002-2018 HEAL</Copyright> 6 <Product>HeuristicLab</Product> 7 <SignAssembly>true</SignAssembly> 8 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile> 9 <AssemblyVersion>3.3.0.0</AssemblyVersion> 10 <AssemblyFileVersion>3.3.15.0</AssemblyFileVersion> 10 11 <RootNamespace>HeuristicLab.Problems.Orienteering</RootNamespace> 11 <AssemblyName>HeuristicLab.Problems.Orienteering-3.3</AssemblyName>12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>13 <FileAlignment>512</FileAlignment>14 <TargetFrameworkProfile />15 </PropertyGroup>16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">17 <DebugSymbols>true</DebugSymbols>18 <DebugType>full</DebugType>19 <Optimize>false</Optimize>20 <OutputPath>..\..\bin\</OutputPath>21 <DefineConstants>DEBUG;TRACE</DefineConstants>22 <ErrorReport>prompt</ErrorReport>23 <WarningLevel>4</WarningLevel>24 <Prefer32Bit>false</Prefer32Bit>25 </PropertyGroup>26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">27 <DebugType>pdbonly</DebugType>28 <Optimize>true</Optimize>29 <OutputPath>..\..\bin\</OutputPath>30 <DefineConstants>TRACE</DefineConstants>31 <ErrorReport>prompt</ErrorReport>32 <WarningLevel>4</WarningLevel>33 <Prefer32Bit>false</Prefer32Bit>34 </PropertyGroup>35 <PropertyGroup>36 <SignAssembly>true</SignAssembly>37 </PropertyGroup>38 <PropertyGroup>39 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>40 </PropertyGroup>41 <PropertyGroup>42 <StartupObject />43 </PropertyGroup>44 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">45 <DebugSymbols>true</DebugSymbols>46 <OutputPath>..\..\bin\</OutputPath>47 <DefineConstants>DEBUG;TRACE</DefineConstants>48 <DebugType>full</DebugType>49 <PlatformTarget>x64</PlatformTarget>50 <ErrorReport>prompt</ErrorReport>51 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>52 <Prefer32Bit>false</Prefer32Bit>53 </PropertyGroup>54 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">55 <OutputPath>..\..\bin\</OutputPath>56 <DefineConstants>TRACE</DefineConstants>57 <Optimize>true</Optimize>58 <DebugType>pdbonly</DebugType>59 <PlatformTarget>x64</PlatformTarget>60 <ErrorReport>prompt</ErrorReport>61 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>62 <Prefer32Bit>false</Prefer32Bit>63 </PropertyGroup>64 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">65 <DebugSymbols>true</DebugSymbols>66 <OutputPath>..\..\bin\</OutputPath>67 <DefineConstants>DEBUG;TRACE</DefineConstants>68 <DebugType>full</DebugType>69 <PlatformTarget>x86</PlatformTarget>70 <ErrorReport>prompt</ErrorReport>71 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>72 <Prefer32Bit>false</Prefer32Bit>73 </PropertyGroup>74 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">75 <OutputPath>..\..\bin\</OutputPath>76 <DefineConstants>TRACE</DefineConstants>77 <Optimize>true</Optimize>78 <DebugType>pdbonly</DebugType>79 <PlatformTarget>x86</PlatformTarget>80 <ErrorReport>prompt</ErrorReport>81 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>82 <Prefer32Bit>false</Prefer32Bit>83 12 </PropertyGroup> 84 13 <ItemGroup> 85 <Reference Include="Microsoft.CSharp" /> 86 <Reference Include="System" /> 87 <Reference Include="System.Core" /> 88 <Reference Include="System.Drawing" /> 14 <PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" /> 15 <PackageReference Include="System.Drawing.Common" Version="4.5.0" /> 89 16 </ItemGroup> 90 17 <ItemGroup> 91 <Compile Include="Analyzers\BestOrienteeringSolutionAnalyzer.cs" /> 92 <Compile Include="Creators\GreedyOrienteeringTourCreator.cs" /> 93 <Compile Include="DistanceMatrix.cs" /> 94 <Compile Include="OrienteeringEvaluationResult.cs" /> 95 <Compile Include="Improvers\OrienteeringLocalImprovementOperator.cs" /> 96 <Compile Include="Interfaces\IOrienteeringEvaluator.cs" /> 97 <Compile Include="Evaluators\OrienteeringEvaluator.cs" /> 98 <Compile Include="Interfaces\IOrienteeringSolutionCreator.cs" /> 99 <Compile Include="OrienteeringProblem.cs" /> 100 <Compile Include="OrienteeringSolution.cs" /> 101 <Compile Include="Plugin.cs" /> 102 <Compile Include="Properties\AssemblyInfo.cs" /> 103 <Compile Include="Shakers\OrienteeringShakingOperator.cs" /> 18 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj" /> 19 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj" /> 20 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj" /> 21 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj" /> 22 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj" /> 23 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj" /> 24 <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj" /> 25 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj" /> 26 <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj" /> 27 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj" /> 28 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj" /> 29 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj" /> 30 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj" /> 31 <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj" /> 32 <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj" /> 33 <ProjectReference Include="..\..\HeuristicLab.Scripting\3.3\HeuristicLab.Scripting-3.3.csproj" /> 104 34 </ItemGroup> 105 35 <ItemGroup> 106 <None Include="HeuristicLab.snk" /> 107 <None Include="Plugin.cs.frame" /> 108 <None Include="Properties\AssemblyInfo.cs.frame" /> 36 <Reference Include="Microsoft.CSharp" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> 109 37 </ItemGroup> 110 <ItemGroup> 111 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj"> 112 <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project> 113 <Name>HeuristicLab.Analysis-3.3</Name> 114 <Private>False</Private> 115 </ProjectReference> 116 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 117 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project> 118 <Name>HeuristicLab.Collections-3.3</Name> 119 <Private>False</Private> 120 </ProjectReference> 121 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj"> 122 <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project> 123 <Name>HeuristicLab.Common.Resources-3.3</Name> 124 <Private>False</Private> 125 </ProjectReference> 126 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 127 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> 128 <Name>HeuristicLab.Common-3.3</Name> 129 <Private>False</Private> 130 </ProjectReference> 131 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 132 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 133 <Name>HeuristicLab.Core-3.3</Name> 134 <Private>False</Private> 135 </ProjectReference> 136 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> 137 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 138 <Name>HeuristicLab.Data-3.3</Name> 139 <Private>False</Private> 140 </ProjectReference> 141 <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj"> 142 <Project>{DDFB14DD-2A85-493C-A52D-E69729BBAEB0}</Project> 143 <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name> 144 <Private>False</Private> 145 </ProjectReference> 146 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 147 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> 148 <Name>HeuristicLab.Operators-3.3</Name> 149 <Private>False</Private> 150 </ProjectReference> 151 <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj"> 152 <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project> 153 <Name>HeuristicLab.Optimization.Operators-3.3</Name> 154 <Private>False</Private> 155 </ProjectReference> 156 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 157 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project> 158 <Name>HeuristicLab.Optimization-3.3</Name> 159 <Private>False</Private> 160 </ProjectReference> 161 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 162 <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project> 163 <Name>HeuristicLab.Parameters-3.3</Name> 164 <Private>False</Private> 165 </ProjectReference> 166 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 167 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> 168 <Name>HeuristicLab.Persistence-3.3</Name> 169 <Private>False</Private> 170 </ProjectReference> 171 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 172 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> 173 <Name>HeuristicLab.PluginInfrastructure-3.3</Name> 174 <Private>False</Private> 175 </ProjectReference> 176 <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj"> 177 <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project> 178 <Name>HeuristicLab.Problems.Instances-3.3</Name> 179 <Private>False</Private> 180 </ProjectReference> 181 <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj"> 182 <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project> 183 <Name>HeuristicLab.Random-3.3</Name> 184 <Private>False</Private> 185 </ProjectReference> 186 <ProjectReference Include="..\..\HeuristicLab.Scripting\3.3\HeuristicLab.Scripting-3.3.csproj"> 187 <Project>{21977CC3-1757-4B3B-87BD-FF817AAA900F}</Project> 188 <Name>HeuristicLab.Scripting-3.3</Name> 189 <Private>False</Private> 190 </ProjectReference> 191 </ItemGroup> 192 <ItemGroup /> 193 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 194 <PropertyGroup> 195 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' "> 196 set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 197 set ProjectDir=$(ProjectDir) 198 set SolutionDir=$(SolutionDir) 199 set Outdir=$(Outdir) 200 201 call PreBuildEvent.cmd 202 </PreBuildEvent> 203 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 204 export ProjectDir=$(ProjectDir) 205 export SolutionDir=$(SolutionDir) 206 207 $SolutionDir/PreBuildEvent.sh 208 </PreBuildEvent> 38 <Target Name="PreBuild" BeforeTargets="PreBuildEvent"> 39 <Exec Command="set Path=%Path%;$(ProjectDir);$(SolutionDir)
set ProjectDir=$(ProjectDir)
set SolutionDir=$(SolutionDir)
set Outdir=$(Outdir)
call PreBuildEvent.cmd" /> 40 </Target> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> 42 <OutputPath>..\..\bin\</OutputPath> 43 <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> 209 44 </PropertyGroup> 210 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.211 Other similar extension points exist, see Microsoft.Common.targets.212 <Target Name="BeforeBuild">213 </Target>214 <Target Name="AfterBuild">215 </Target>216 -->217 45 </Project>
Note: See TracChangeset
for help on using the changeset viewer.