Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/14/18 17:07:25 (6 years ago)
Author:
dpiringe
Message:

#2522:

  • migrated a lot of projects to .NET Standard 2.0
  • added AppDomain.CurrentDomain.ApplyPolicy to Assembly.ReflectionOnlyLoad in PluginValidator to correctly load the System library
  • deleted Properties folder from .NET Standard projects, because AssemblyInformation is saved in .csproj files now
  • .NET Framework projects target now v4.7, because it is only possible to use .NET Standard libraries in v4.6 or higher
  • removed System.Data.Linq from defaultAssemblies and DiscoverNamespaces in ProgrammableOperator, it is not supported in .NET Standard
  • the Microsoft.Windows.Compatibility package is necessary for usage of PluginInfrastructure, we should probably switch to the System.Drawing.Common package when PluginInfrastructure is migrated to .NET Standard
Location:
branches/2522_RefactorPluginInfrastructure/HeuristicLab.Problems.VehicleRouting/3.4
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2522_RefactorPluginInfrastructure/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLab.Problems.VehicleRouting-3.4.csproj

    r11623 r16143  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
     2<Project Sdk="Microsoft.NET.Sdk">
    33  <PropertyGroup>
    4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
    7     <SchemaVersion>2.0</SchemaVersion>
    8     <ProjectGuid>{B94FFB82-43D4-40AB-9980-B03470ADF221}</ProjectGuid>
    9     <OutputType>Library</OutputType>
    10     <AppDesignerFolder>Properties</AppDesignerFolder>
    11     <RootNamespace>HeuristicLab.Problems.VehicleRouting</RootNamespace>
    12     <AssemblyName>HeuristicLab.Problems.VehicleRouting-3.4</AssemblyName>
     4    <TargetFramework>netstandard2.0</TargetFramework>
     5    <Copyright>(c) 2002-2018 HEAL</Copyright>
     6    <Product>HeuristicLab</Product>
    137    <SignAssembly>true</SignAssembly>
    148    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    15     <FileUpgradeFlags>
    16     </FileUpgradeFlags>
    17     <OldToolsVersion>3.5</OldToolsVersion>
    18     <UpgradeBackupLocation>
    19     </UpgradeBackupLocation>
    20     <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    21     <PublishUrl>publish\</PublishUrl>
    22     <Install>true</Install>
    23     <InstallFrom>Disk</InstallFrom>
    24     <UpdateEnabled>false</UpdateEnabled>
    25     <UpdateMode>Foreground</UpdateMode>
    26     <UpdateInterval>7</UpdateInterval>
    27     <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    28     <UpdatePeriodically>false</UpdatePeriodically>
    29     <UpdateRequired>false</UpdateRequired>
    30     <MapFileExtensions>true</MapFileExtensions>
    31     <ApplicationRevision>0</ApplicationRevision>
    32     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    33     <IsWebBootstrapper>false</IsWebBootstrapper>
    34     <UseApplicationTrust>false</UseApplicationTrust>
    35     <BootstrapperEnabled>true</BootstrapperEnabled>
    36     <TargetFrameworkProfile />
    37   </PropertyGroup>
    38   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    39     <DebugSymbols>true</DebugSymbols>
    40     <DebugType>full</DebugType>
    41     <Optimize>false</Optimize>
    42     <OutputPath>..\..\bin\</OutputPath>
    43     <DefineConstants>DEBUG;TRACE</DefineConstants>
    44     <ErrorReport>prompt</ErrorReport>
    45     <WarningLevel>4</WarningLevel>
    46     <DocumentationFile>
    47     </DocumentationFile>
    48     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    49     <Prefer32Bit>false</Prefer32Bit>
    50   </PropertyGroup>
    51   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    52     <DebugType>pdbonly</DebugType>
    53     <Optimize>true</Optimize>
    54     <OutputPath>..\..\bin\</OutputPath>
    55     <DefineConstants>TRACE</DefineConstants>
    56     <ErrorReport>prompt</ErrorReport>
    57     <WarningLevel>4</WarningLevel>
    58     <DocumentationFile>
    59     </DocumentationFile>
    60     <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    61     <CodeAnalysisRuleSet>AllRules.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>AllRules.ruleset</CodeAnalysisRuleSet>
    72     <Prefer32Bit>false</Prefer32Bit>
    73   </PropertyGroup>
    74   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    75     <OutputPath>..\..\bin\</OutputPath>
    76     <DefineConstants>TRACE</DefineConstants>
    77     <DocumentationFile>
    78     </DocumentationFile>
    79     <Optimize>true</Optimize>
    80     <DebugType>pdbonly</DebugType>
    81     <PlatformTarget>x86</PlatformTarget>
    82     <ErrorReport>prompt</ErrorReport>
    83     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    84     <Prefer32Bit>false</Prefer32Bit>
    85   </PropertyGroup>
    86   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
    87     <DebugSymbols>true</DebugSymbols>
    88     <OutputPath>..\..\bin\</OutputPath>
    89     <DefineConstants>DEBUG;TRACE</DefineConstants>
    90     <DebugType>full</DebugType>
    91     <PlatformTarget>x64</PlatformTarget>
    92     <ErrorReport>prompt</ErrorReport>
    93     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    94     <Prefer32Bit>false</Prefer32Bit>
    95   </PropertyGroup>
    96   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
    97     <OutputPath>..\..\bin\</OutputPath>
    98     <DefineConstants>TRACE</DefineConstants>
    99     <DocumentationFile>bin\x64\Release\HeuristicLab.Routing.TSP-3.3.XML</DocumentationFile>
    100     <Optimize>true</Optimize>
    101     <DebugType>pdbonly</DebugType>
    102     <PlatformTarget>x64</PlatformTarget>
    103     <ErrorReport>prompt</ErrorReport>
    104     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    105     <Prefer32Bit>false</Prefer32Bit>
     9    <AssemblyVersion>3.4.0.0</AssemblyVersion>
     10    <AssemblyFileVersion>3.4.8.0</AssemblyFileVersion>
     11    <RootNamespace>HeuristicLab.Problems.VehicleRouting</RootNamespace>
    10612  </PropertyGroup>
    10713  <ItemGroup>
    108     <Reference Include="System" />
    109     <Reference Include="System.Core">
    110       <RequiredTargetFramework>3.5</RequiredTargetFramework>
    111     </Reference>
    112     <Reference Include="System.Data" />
    113     <Reference Include="System.Drawing" />
    114     <Reference Include="System.Xml" />
     14    <PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
     15    <PackageReference Include="System.Drawing.Common" Version="4.5.0" />
    11516  </ItemGroup>
    11617  <ItemGroup>
    117     <Compile Include="Analyzer\BestAverageWorstTours\BestAverageWorstVRPToursAnalyzer.cs" />
    118     <Compile Include="Analyzer\BestAverageWorstTours\BestAverageWorstVRPToursCalculator.cs" />
    119     <Compile Include="Analyzer\BestAverageWorstTours\BestVRPToursMemorizer.cs" />
    120     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestAverageWorstCapacitatedVRPToursAnalyzer.cs" />
    121     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestAverageWorstCapacitatedVRPToursCalculator.cs" />
    122     <Compile Include="Analyzer\BestAverageWorstTours\Capacitated\BestCapacitatedVRPToursMemorizer.cs" />
    123     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestAverageWorstPickupAndDeliveryVRPToursAnalyzer.cs" />
    124     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestAverageWorstPickupAndDeliveryVRPToursCalculator.cs" />
    125     <Compile Include="Analyzer\BestAverageWorstTours\PickupAndDelivery\BestPickupAndDeliveryVRPToursMemorizer.cs" />
    126     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestAverageWorstTimeWindowedVRPToursAnalyzer.cs" />
    127     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestAverageWorstTimeWindowedVRPToursCalculator.cs" />
    128     <Compile Include="Analyzer\BestAverageWorstTours\TimeWindowed\BestTimeWindowedVRPToursMemorizer.cs" />
    129     <Compile Include="Analyzer\BestSolution\BestVRPSolutionAnalyzer.cs" />
    130     <Compile Include="Analyzer\BestSolution\Capacitated\BestCapacitatedVRPSolutionAnalyzer.cs" />
    131     <Compile Include="Analyzer\BestSolution\PickupAndDelivery\BestPickupAndDeliveryVRPSolutionAnalyzer.cs" />
    132     <Compile Include="Analyzer\BestSolution\TimeWindowed\BestTimeWindowedVRPSolutionAnalyzer.cs" />
    133     <Compile Include="Analyzer\ConstraintRelaxation\Capacitated\CapacityRelaxationVRPAnalyzer.cs" />
    134     <Compile Include="Analyzer\ConstraintRelaxation\PickupAndDelivery\PickupViolationsRelaxationVRPAnalyzer.cs" />
    135     <Compile Include="Analyzer\ConstraintRelaxation\TimeWindowed\TimeWindowRelaxationVRPAnalyzer.cs" />
    136     <Compile Include="Analyzer\VRPSolution.cs" />
    137     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\IPotvinTwoOptStarMoveOperator.cs" />
    138     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarExhaustiveMoveGenerator.cs" />
    139     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMove.cs" />
    140     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveAttribute.cs" />
    141     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveEvaluator.cs" />
    142     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveGenerator.cs" />
    143     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveMaker.cs" />
    144     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveTabuCriterion.cs" />
    145     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMoveTabuMaker.cs" />
    146     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarMultiMoveGenerator.cs" />
    147     <Compile Include="Encodings\Potvin\Moves\TwoOptStar\PotvinTwoOptStarSingleMoveGenerator.cs" />
    148     <Compile Include="Improver\VRPImprovementOperator.cs" />
    149     <Compile Include="Improver\VRPIntraRouteImprovementOperator.cs" />
    150     <Compile Include="Interfaces\IVRPLocalSearchManipulator.cs" />
    151     <Compile Include="Interpreters\MDCVRPInterpreter.cs" />
    152     <Compile Include="Interpreters\VRPInterpreter.cs" />
    153     <Compile Include="Interpreters\MDCVRPTWInterpreter.cs" />
    154     <Compile Include="Interpreters\PDPTWInterpreter.cs" />
    155     <Compile Include="Interpreters\CVRPTWInterpreter.cs" />
    156     <Compile Include="Interpreters\CVRPInterpreter.cs" />
    157     <Compile Include="Interpreters\IVRPDataInterpreter.cs" />
    158     <Compile Include="PathRelinkers\VRPPathRelinker.cs" />
    159     <Compile Include="Properties\AssemblyInfo.cs" />
    160     <Compile Include="Encodings\Alba\AlbaEncoding.cs" />
    161     <Compile Include="Encodings\Alba\Creators\RandomCreator.cs" />
    162     <Compile Include="Encodings\Alba\Creators\AlbaCreator.cs" />
    163     <Compile Include="Encodings\Alba\IAlbaOperator.cs" />
    164     <Compile Include="Encodings\Alba\Crossovers\AlbaCrossover.cs" />
    165     <Compile Include="Encodings\Alba\Crossovers\AlbaPermutationCrossover.cs" />
    166     <Compile Include="Encodings\Alba\LocalImprovement\AlbaLambdaInterchangeLocalImprovementOperator.cs" />
    167     <Compile Include="Encodings\Alba\Manipulators\AlbaCustomerInsertionManipulator.cs" />
    168     <Compile Include="Encodings\Alba\Manipulators\AlbaCustomerInversionManipulator.cs" />
    169     <Compile Include="Encodings\Alba\Manipulators\AlbaCustomerSwapManipulator.cs" />
    170     <Compile Include="Encodings\Alba\Manipulators\AlbaIntraRouteInversionManipulator.cs" />
    171     <Compile Include="Encodings\Alba\Manipulators\AlbaLambdaInterchangeManipulator.cs" />
    172     <Compile Include="Encodings\Alba\Manipulators\AlbaManipulator.cs" />
    173     <Compile Include="Encodings\Alba\Manipulators\AlbaPermutationManipulator.cs" />
    174     <Compile Include="Encodings\Alba\Moves\AlbaMoveEvaluator.cs" />
    175     <Compile Include="Encodings\Alba\Moves\AlbaMoveMaker.cs" />
    176     <Compile Include="Encodings\Alba\Moves\AlbaMoveGenerator.cs" />
    177     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaExhaustiveIntraRouteInversionMoveGenerator.cs" />
    178     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaIntraRouteInversionEvaluator.cs" />
    179     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaIntraRouteInversionMove.cs" />
    180     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaIntraRouteInversionMoveGenerator.cs" />
    181     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaIntraRouteInversionMoveMaker.cs" />
    182     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaStochasticIntraRouteInversionMutliMoveGenerator.cs" />
    183     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\AlbaStochasticIntraRouteInversionSingleMoveGenerator.cs" />
    184     <Compile Include="Encodings\Alba\Moves\IntraRouteInversion\IAlbaIntraRouteInversionMoveOperator.cs" />
    185     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaExhaustiveLambdaInterchangeMoveGenerator.cs" />
    186     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaLambdaInterchangeMove.cs" />
    187     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaLambdaInterchangeMoveEvaluator.cs" />
    188     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaLambdaInterchangeMoveGenerator.cs" />
    189     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaLambdaInterchangeMoveMaker.cs" />
    190     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaStochasticLambdaInterchangeMutliMoveGenerator.cs" />
    191     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\AlbaStochasticLambdaInterchangeSingleMoveGenerator.cs" />
    192     <Compile Include="Encodings\Alba\Moves\LambdaInterchange\IAlbaLambdaInterchangeMoveOperator.cs" />
    193     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMove.cs" />
    194     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveEvaluator.cs" />
    195     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveGenerator.cs" />
    196     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveHardTabuCriterion.cs" />
    197     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveMaker.cs" />
    198     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveSoftTabuCriterion.cs" />
    199     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveTabuMaker.cs" />
    200     <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaStochasticTranslocationSingleMoveGenerator.cs" />
    201     <Compile Include="Encodings\Alba\Moves\ThreeOpt\IAlbaTranslocationMoveOperator.cs" />
    202     <Compile Include="Encodings\Potvin\Creators\IterativeInsertionCreator.cs" />
    203     <Compile Include="Encodings\Potvin\Creators\PushForwardInsertionCreator.cs" />
    204     <Compile Include="Encodings\General\Creators\MultiVRPSolutionCreator.cs" />
    205     <Compile Include="Encodings\General\Creators\VRPCreator.cs" />
    206     <Compile Include="Encodings\General\Crossovers\BiasedMultiVRPSolutionCrossover.cs" />
    207     <Compile Include="Encodings\General\Crossovers\MultiVRPSolutionCrossover.cs" />
    208     <Compile Include="Encodings\General\Crossovers\RandomParentCloneCrossover.cs" />
    209     <Compile Include="Encodings\General\Crossovers\VRPCrossover.cs" />
    210     <Compile Include="Encodings\General\Manipulators\BiasedMultiVRPSolutionManipulator.cs" />
    211     <Compile Include="Encodings\General\Manipulators\MultiVRPSolutionManipulator.cs" />
    212     <Compile Include="Encodings\General\Manipulators\VRPManipulator.cs" />
    213     <Compile Include="Encodings\General\Moves\Interfaces\IMultiVRPMoveGenerator.cs" />
    214     <Compile Include="Encodings\General\Moves\Interfaces\IMultiVRPMoveOperator.cs" />
    215     <Compile Include="Encodings\General\Moves\Interfaces\IVRPMove.cs" />
    216     <Compile Include="Encodings\General\Moves\MultiVRPMoveOperator\MultiVRPMoveTabuMaker.cs" />
    217     <Compile Include="Encodings\General\Moves\MultiVRPMoveOperator\MultiVRPMoveTabuChecker.cs" />
    218     <Compile Include="Encodings\General\Moves\MultiVRPMoveOperator\MultiVRPMoveEvaluator.cs" />
    219     <Compile Include="Encodings\General\Moves\MultiVRPMoveOperator\MultiVRPMoveGenerator.cs" />
    220     <Compile Include="Encodings\General\Moves\MultiVRPMoveOperator\MultiVRPMoveMaker.cs" />
    221     <Compile Include="Encodings\General\Moves\VRPMoveGenerator.cs" />
    222     <Compile Include="Encodings\General\Moves\VRPMoveOperator.cs" />
    223     <Compile Include="Encodings\General\Moves\VRPMoveMaker.cs" />
    224     <Compile Include="Encodings\General\Moves\VRPMoveEvaluator.cs" />
    225     <Compile Include="Encodings\General\PermutationEncoding.cs" />
    226     <Compile Include="Encodings\General\ShakingOperators\VehicleRoutingShakingOperator.cs" />
    227     <Compile Include="Encodings\General\TourEncoding.cs" />
    228     <Compile Include="Encodings\GVR\Crossovers\GVRCrossover.cs" />
    229     <Compile Include="Encodings\GVR\GVREncoding.cs" />
    230     <Compile Include="Encodings\GVR\IGVROperator.cs" />
    231     <Compile Include="Encodings\GVR\Manipulators\GVRDisplacementManipulator.cs" />
    232     <Compile Include="Encodings\GVR\Manipulators\GVRInsertionManipulator.cs" />
    233     <Compile Include="Encodings\GVR\Manipulators\GVRInversionManipulator.cs" />
    234     <Compile Include="Encodings\GVR\Manipulators\GVRManipulator.cs" />
    235     <Compile Include="Encodings\GVR\Manipulators\GVRSwapManipulator.cs" />
    236     <Compile Include="Encodings\Potvin\Creators\PotvinCreator.cs" />
    237     <Compile Include="Encodings\Potvin\Crossovers\PotvinCrossover.cs" />
    238     <Compile Include="Encodings\Potvin\Crossovers\PotvinInsertionBasedCrossover.cs" />
    239     <Compile Include="Encodings\Potvin\Crossovers\PotvinRouteBasedCrossover.cs" />
    240     <Compile Include="Encodings\Potvin\Crossovers\PotvinSequenceBasedCrossover.cs" />
    241     <Compile Include="Encodings\Potvin\IPotvinOperator.cs" />
    242     <Compile Include="Encodings\Potvin\Manipulators\PotvinPairwiseTwoLevelExchangeManipulator.cs" />
    243     <Compile Include="Encodings\Potvin\Manipulators\PotvinPairwiseOneLevelExchangeManipulator.cs" />
    244     <Compile Include="Encodings\Potvin\Manipulators\PotvinVehicleAssignmentManipulator.cs" />
    245     <Compile Include="Encodings\Potvin\Manipulators\PotvinLocalSearchManipulator.cs" />
    246     <Compile Include="Encodings\Potvin\Manipulators\PotvinManipulator.cs" />
    247     <Compile Include="Encodings\Potvin\Manipulators\PotvinOneLevelExchangeManipulator.cs" />
    248     <Compile Include="Encodings\Potvin\Manipulators\PotvinTwoLevelExchangeManipulator.cs" />
    249     <Compile Include="Encodings\General\Moves\VRPMoveAttribute.cs" />
    250     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveTabuMaker.cs" />
    251     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationSingleMoveGenerator.cs" />
    252     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMultiMoveGenerator.cs" />
    253     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationExhaustiveMoveGenerator.cs" />
    254     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveEvaluator.cs" />
    255     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveMaker.cs" />
    256     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\IPotvinCustomerRelocationMoveOperator.cs" />
    257     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveAttribute.cs" />
    258     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveTabuCriterion.cs" />
    259     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PotvinPDRelocateMoveAttribute.cs" />
    260     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\IPotvinPDExchangeMoveOperator.cs" />
    261     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeExhaustiveMoveGenerator.cs" />
    262     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMove.cs" />
    263     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMoveEvaluator.cs" />
    264     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMoveGenerator.cs" />
    265     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMoveMaker.cs" />
    266     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMoveTabuCriterion.cs" />
    267     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMoveTabuMaker.cs" />
    268     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeMultiMoveGenerator.cs" />
    269     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDExchange\PotvinPDExchangeSingleMoveGenerator.cs" />
    270     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\IPotvinPDRearrangeMoveOperator.cs" />
    271     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeExhaustiveMoveGenerator.cs" />
    272     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMove.cs" />
    273     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMoveEvaluator.cs" />
    274     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMoveGenerator.cs" />
    275     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMoveMaker.cs" />
    276     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMoveTabuCriterion.cs" />
    277     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMoveTabuMaker.cs" />
    278     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeMultiMoveGenerator.cs" />
    279     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDRearrange\PotvinPDRearrangeSingleMoveGenerator.cs" />
    280     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\IPotvinPDShiftMoveOperator.cs" />
    281     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMoveTabuCriterion.cs" />
    282     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMoveTabuMaker.cs" />
    283     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMultiMoveGenerator.cs" />
    284     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftSingleMoveGenerator.cs" />
    285     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftExhaustiveMoveGenerator.cs" />
    286     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMoveMaker.cs" />
    287     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMoveEvaluator.cs" />
    288     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMoveGenerator.cs" />
    289     <Compile Include="Encodings\Potvin\Moves\PickupDelivery\PDShift\PotvinPDShiftMove.cs" />
    290     <Compile Include="Encodings\Potvin\Moves\PotvinMoveEvaluator.cs" />
    291     <Compile Include="Encodings\Potvin\Moves\PotvinMoveGenerator.cs" />
    292     <Compile Include="Encodings\Potvin\Moves\PotvinMoveMaker.cs" />
    293     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMoveGenerator.cs" />
    294     <Compile Include="Encodings\Potvin\Moves\CustomerRelocation\PotvinCustomerRelocationMove.cs" />
    295     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\IPotvinVehicleAssignmentMoveOperator.cs" />
    296     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveTabuCriterion.cs" />
    297     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveTabuMaker.cs" />
    298     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentExhaustiveMoveGenerator.cs" />
    299     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMove.cs" />
    300     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveAttribute.cs" />
    301     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveEvaluator.cs" />
    302     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveGenerator.cs" />
    303     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMoveMaker.cs" />
    304     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentMultiMoveGenerator.cs" />
    305     <Compile Include="Encodings\Potvin\Moves\VehicleAssignment\PotvinVehicleAssignmentSingleMoveGenerator.cs" />
    306     <Compile Include="Encodings\Potvin\PotvinEncoding.cs" />
    307     <Compile Include="Encodings\Prins\Crossovers\PrinsCrossover.cs" />
    308     <Compile Include="Encodings\Prins\Crossovers\PrinsPermutationCrossover.cs" />
    309     <Compile Include="Encodings\Prins\IPrinsOperator.cs" />
    310     <Compile Include="Encodings\Prins\Manipulators\PrinsExhaustiveLSManipulator.cs" />
    311     <Compile Include="Encodings\Prins\Manipulators\PrinsLSManipulator.cs" />
    312     <Compile Include="Encodings\Prins\Manipulators\PrinsManipulator.cs" />
    313     <Compile Include="Encodings\Prins\Manipulators\PrinsPermutationManipulator.cs" />
    314     <Compile Include="Encodings\Prins\Manipulators\PrinsStochasticLSManipulator.cs" />
    315     <Compile Include="Encodings\Prins\PrinsEncoding.cs" />
    316     <Compile Include="Encodings\VRPOperator.cs" />
    317     <Compile Include="Encodings\Zhu\Crossovers\ZhuCrossover.cs" />
    318     <Compile Include="Encodings\Zhu\Crossovers\ZhuHeuristicCrossover1.cs" />
    319     <Compile Include="Encodings\Zhu\Crossovers\ZhuHeuristicCrossover2.cs" />
    320     <Compile Include="Encodings\Zhu\Crossovers\ZhuMergeCrossover1.cs" />
    321     <Compile Include="Encodings\Zhu\Crossovers\ZhuMergeCrossover2.cs" />
    322     <Compile Include="Encodings\Zhu\Crossovers\ZhuPermutationCrossover.cs" />
    323     <Compile Include="Encodings\Zhu\IZhuOperator.cs" />
    324     <Compile Include="Encodings\Zhu\Manipulators\ZhuManipulator.cs" />
    325     <Compile Include="Encodings\Zhu\Manipulators\ZhuPermutationManipulator.cs" />
    326     <Compile Include="Encodings\Zhu\ZhuEncoding.cs" />
    327     <Compile Include="Interfaces\IMultiVRPOperator.cs" />
    328     <Compile Include="Interfaces\IVRPManipulator.cs" />
    329     <Compile Include="Interfaces\IVRPCrossover.cs" />
    330     <Compile Include="Interfaces\IVRPEvaluator.cs" />
    331     <Compile Include="Interfaces\IVRPCreator.cs" />
    332     <Compile Include="Interfaces\IVRPMoveOperator.cs" />
    333     <Compile Include="Interfaces\IVRPMultiNeighborhoodShakingOperator.cs" />
    334     <Compile Include="Interfaces\IVRPOperator.cs" />
    335     <Compile Include="Interfaces\IVRPEncoding.cs" />
    336     <Compile Include="Interfaces\IVRPProblemInstance.cs" />
    337     <Compile Include="Plugin.cs" />
    338     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPEvaluator.cs" />
    339     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPProblemInstance.cs" />
    340     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPPDTW\MDCVRPPDTWEvaluator.cs" />
    341     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPPDTW\MDCVRPPDTWProblemInstance.cs" />
    342     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPTWEvaluator.cs" />
    343     <Compile Include="ProblemInstances\MultiDepotVRP\MDCVRP\MDCVRPTW\MDCVRPTWProblemInstance.cs" />
    344     <Compile Include="ProblemInstances\MultiDepotVRP\MultiDepotVRPProblemInstance.cs" />
    345     <Compile Include="ProblemInstances\MultiDepotVRP\MultiDepotVRPEvaluator.cs" />
    346     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPPDTW\CVRPPDTWProblemInstance.cs" />
    347     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPPDTW\CVRPPDTWEvaluation.cs" />
    348     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPPDTW\CVRPPDTWEvaluator.cs" />
    349     <Compile Include="ProblemInstances\SingleDepotVRP\SingleDepotVRPEvaluator.cs" />
    350     <Compile Include="SimilarityCalculators\VRPSimilarityCalculator.cs" />
    351     <Compile Include="SolutionParser.cs" />
    352     <Compile Include="Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedProblemInstance.cs" />
    353     <Compile Include="Variants\Capacitated\Heterogenous\IHeterogenousCapacitatedOperator.cs" />
    354     <Compile Include="Variants\Capacitated\Homogenous\IHomogenousCapacitatedOperator.cs" />
    355     <Compile Include="Variants\Capacitated\Homogenous\IHomogenousCapacitatedProblemInstance.cs" />
    356     <Compile Include="Variants\Capacitated\ICapacitatedProblemInstance.cs" />
    357     <Compile Include="Variants\Capacitated\ICapacitatedOperator.cs" />
    358     <Compile Include="Variants\General\IGeneralVRPOperator.cs" />
    359     <Compile Include="Variants\MultiDepot\IMultiDepotOperator.cs" />
    360     <Compile Include="Variants\MultiDepot\IMultiDepotProblemInstance.cs" />
    361     <Compile Include="Variants\PickupAndDelivery\IPickupAndDeliveryOperator.cs" />
    362     <Compile Include="Variants\PickupAndDelivery\IPickupAndDeliveryProblemInstance.cs" />
    363     <Compile Include="Variants\SingleDepot\ISingleDepotOperator.cs" />
    364     <Compile Include="Variants\SingleDepot\ISingleDepotProblemInstance.cs" />
    365     <Compile Include="Variants\TimeWindowed\ITimeWindowedProblemInstance.cs" />
    366     <Compile Include="Variants\TimeWindowed\ITimeWindowedOperator.cs" />
    367     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWProblemInstance.cs" />
    368     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPProblemInstance.cs" />
    369     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWEvaluation.cs" />
    370     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPEvaluation.cs" />
    371     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPTW\CVRPTWEvaluator.cs" />
    372     <Compile Include="ProblemInstances\SingleDepotVRP\CVRP\CVRPEvaluator.cs" />
    373     <Compile Include="ProblemInstances\VRPEvaluator.cs" />
    374     <Compile Include="ProblemInstances\VRPEvaluation.cs" />
    375     <Compile Include="ProblemInstances\SingleDepotVRP\SingleDepotVRPProblemInstance.cs" />
    376     <Compile Include="ProblemInstances\VRPProblemInstance.cs" />
    377     <Compile Include="Encodings\Tour.cs" />
    378     <Compile Include="VehicleRoutingProblem.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.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-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" />
    37933  </ItemGroup>
    380   <ItemGroup>
    381     <None Include="Properties\AssemblyInfo.cs.frame" />
    382     <None Include="HeuristicLab.snk" />
    383     <None Include="Plugin.cs.frame" />
    384   </ItemGroup>
    385   <ItemGroup>
    386     <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
    387       <Visible>False</Visible>
    388       <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
    389       <Install>false</Install>
    390     </BootstrapperPackage>
    391     <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
    392       <Visible>False</Visible>
    393       <ProductName>.NET Framework 3.5 SP1</ProductName>
    394       <Install>true</Install>
    395     </BootstrapperPackage>
    396     <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
    397       <Visible>False</Visible>
    398       <ProductName>Windows Installer 3.1</ProductName>
    399       <Install>true</Install>
    400     </BootstrapperPackage>
    401   </ItemGroup>
    402   <ItemGroup>
    403     <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
    404       <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
    405       <Name>HeuristicLab.Analysis-3.3</Name>
    406       <Private>False</Private>
    407     </ProjectReference>
    408     <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    409       <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
    410       <Name>HeuristicLab.Collections-3.3</Name>
    411       <Private>False</Private>
    412     </ProjectReference>
    413     <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
    414       <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
    415       <Name>HeuristicLab.Common.Resources-3.3</Name>
    416       <Private>False</Private>
    417     </ProjectReference>
    418     <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
    419       <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
    420       <Name>HeuristicLab.Common-3.3</Name>
    421       <Private>False</Private>
    422     </ProjectReference>
    423     <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
    424       <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
    425       <Name>HeuristicLab.Core-3.3</Name>
    426       <Private>False</Private>
    427     </ProjectReference>
    428     <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
    429       <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
    430       <Name>HeuristicLab.Data-3.3</Name>
    431       <Private>False</Private>
    432     </ProjectReference>
    433     <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
    434       <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project>
    435       <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
    436       <Private>False</Private>
    437     </ProjectReference>
    438     <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
    439       <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
    440       <Name>HeuristicLab.Operators-3.3</Name>
    441       <Private>False</Private>
    442     </ProjectReference>
    443     <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
    444       <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
    445       <Name>HeuristicLab.Optimization.Operators-3.3</Name>
    446       <Private>False</Private>
    447     </ProjectReference>
    448     <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
    449       <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
    450       <Name>HeuristicLab.Optimization-3.3</Name>
    451       <Private>False</Private>
    452     </ProjectReference>
    453     <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
    454       <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
    455       <Name>HeuristicLab.Parameters-3.3</Name>
    456       <Private>False</Private>
    457     </ProjectReference>
    458     <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
    459       <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
    460       <Name>HeuristicLab.Persistence-3.3</Name>
    461       <Private>False</Private>
    462     </ProjectReference>
    463     <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
    464       <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
    465       <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
    466       <Private>False</Private>
    467     </ProjectReference>
    468     <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
    469       <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>
    470       <Name>HeuristicLab.Problems.Instances-3.3</Name>
    471       <Private>False</Private>
    472     </ProjectReference>
    473     <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
    474       <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
    475       <Name>HeuristicLab.Random-3.3</Name>
    476     </ProjectReference>
    477   </ItemGroup>
    478   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
    479   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    480        Other similar extension points exist, see Microsoft.Common.targets.
    481   <Target Name="BeforeBuild">
     34  <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
     35    <Exec Command="set Path=%Path%;$(ProjectDir);$(SolutionDir)&#xD;&#xA;set ProjectDir=$(ProjectDir)&#xD;&#xA;set SolutionDir=$(SolutionDir)&#xD;&#xA;set Outdir=$(Outdir)&#xD;&#xA;call PreBuildEvent.cmd" />
    48236  </Target>
    483   <Target Name="AfterBuild">
    484   </Target>
    485   -->
    486   <PropertyGroup>
    487     <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    488 set ProjectDir=$(ProjectDir)
    489 set SolutionDir=$(SolutionDir)
    490 set Outdir=$(Outdir)
    491 
    492 call PreBuildEvent.cmd</PreBuildEvent>
    493     <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
    494 export ProjectDir=$(ProjectDir)
    495 export SolutionDir=$(SolutionDir)
    496 
    497 $SolutionDir/PreBuildEvent.sh
    498 </PreBuildEvent>
    499   </PropertyGroup>
    500   <PropertyGroup>
    501     <PostBuildEvent>
    502     </PostBuildEvent>
     37  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
     38    <OutputPath>..\..\bin\</OutputPath>
     39    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    50340  </PropertyGroup>
    50441</Project>
Note: See TracChangeset for help on using the changeset viewer.