Free cookie consent management tool by TermsFeed Policy Generator

Changeset 564 for trunk


Ignore:
Timestamp:
09/14/08 08:12:50 (16 years ago)
Author:
gkronber
Message:

There are problems when compiling to a specific architecture (i.e. x86 instead of any cpu) because VS adds another directory level (bin/x86/Debug). Thus I improved the directory handling in the install scripts and build-events. Also changed the default architecture for the solution and all projects to x86. Hopefully this doesn't cause compilation problems for anyone. In this case just reverse merge the changeset.

Location:
trunk/sources
Files:
44 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/HeuristicLab.AdvancedOptimizationFrontend.csproj

    r30 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.AdvancedOptimizationFrontend.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.AdvancedOptimizationFrontend.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    143160  -->
    144161  <PropertyGroup>
    145     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     162    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    146163  </PropertyGroup>
    147164</Project>
  • TabularUnified trunk/sources/HeuristicLab.BitVector/HeuristicLab.BitVector.csproj

    r30 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.BitVector.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.BitVector.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    7996  -->
    8097  <PropertyGroup>
    81     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     98    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    8299  </PropertyGroup>
    83100</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.Charting/HeuristicLab.CEDMA.Charting.csproj

    r561 r564  
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
     
    109125  -->
    110126  <PropertyGroup>
    111     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     127    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    112128  </PropertyGroup>
    113129</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.Core/HeuristicLab.CEDMA.Core.csproj

    r560 r564  
    161161  -->
    162162  <PropertyGroup>
    163     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     163    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    164164  </PropertyGroup>
    165165</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/HeuristicLab.CEDMA.DB.Interfaces.csproj

    r551 r564  
    103103  -->
    104104  <PropertyGroup>
    105     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     105    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    106106  </PropertyGroup>
    107107</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.DB/HeuristicLab.CEDMA.DB.csproj

    r551 r564  
    120120  -->
    121121  <PropertyGroup>
    122     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     122    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    123123  </PropertyGroup>
    124124</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.Operators/HeuristicLab.CEDMA.Operators.csproj

    r547 r564  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{6BC692D4-8843-4945-ACE4-5B41ED55476A}</ProjectGuid>
     
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
     
    106122  -->
    107123  <PropertyGroup>
    108     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     124    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    109125  </PropertyGroup>
    110126</Project>
  • TabularUnified trunk/sources/HeuristicLab.CEDMA.Server/HeuristicLab.CEDMA.Server.csproj

    r546 r564  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{F05D261A-4F7D-46C9-AB9C-21FD4566D719}</ProjectGuid>
     
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
     
    122138  -->
    123139  <PropertyGroup>
    124     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     140    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    125141  </PropertyGroup>
    126142</Project>
  • TabularUnified trunk/sources/HeuristicLab.Charting.Data/HeuristicLab.Charting.Data.csproj

    r30 r564  
    3737    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3838    <DocumentationFile>bin\Release\HeuristicLab.Charting.Data.XML</DocumentationFile>
     39  </PropertyGroup>
     40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     41    <DebugSymbols>true</DebugSymbols>
     42    <OutputPath>bin\x86\Debug\</OutputPath>
     43    <DefineConstants>DEBUG;TRACE</DefineConstants>
     44    <DebugType>full</DebugType>
     45    <PlatformTarget>x86</PlatformTarget>
     46    <ErrorReport>prompt</ErrorReport>
     47  </PropertyGroup>
     48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     49    <OutputPath>bin\x86\Release\</OutputPath>
     50    <DefineConstants>TRACE</DefineConstants>
     51    <DocumentationFile>bin\Release\HeuristicLab.Charting.Data.XML</DocumentationFile>
     52    <Optimize>true</Optimize>
     53    <DebugType>pdbonly</DebugType>
     54    <PlatformTarget>x86</PlatformTarget>
     55    <ErrorReport>prompt</ErrorReport>
    3956  </PropertyGroup>
    4057  <ItemGroup>
     
    86103  -->
    87104  <PropertyGroup>
    88     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     105    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    89106  </PropertyGroup>
    90107</Project>
  • TabularUnified trunk/sources/HeuristicLab.Charting/HeuristicLab.Charting.csproj

    r30 r564  
    3737    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3838    <DocumentationFile>bin\Release\HeuristicLab.Charting.XML</DocumentationFile>
     39  </PropertyGroup>
     40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     41    <DebugSymbols>true</DebugSymbols>
     42    <OutputPath>bin\x86\Debug\</OutputPath>
     43    <DefineConstants>DEBUG;TRACE</DefineConstants>
     44    <DebugType>full</DebugType>
     45    <PlatformTarget>x86</PlatformTarget>
     46    <ErrorReport>prompt</ErrorReport>
     47  </PropertyGroup>
     48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     49    <OutputPath>bin\x86\Release\</OutputPath>
     50    <DefineConstants>TRACE</DefineConstants>
     51    <DocumentationFile>bin\Release\HeuristicLab.Charting.XML</DocumentationFile>
     52    <Optimize>true</Optimize>
     53    <DebugType>pdbonly</DebugType>
     54    <PlatformTarget>x86</PlatformTarget>
     55    <ErrorReport>prompt</ErrorReport>
    3956  </PropertyGroup>
    4057  <ItemGroup>
     
    113130  -->
    114131  <PropertyGroup>
    115     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     132    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    116133  </PropertyGroup>
    117134</Project>
  • TabularUnified trunk/sources/HeuristicLab.Constraints/HeuristicLab.Constraints.csproj

    r103 r564  
    3636    <DocumentationFile>bin\Release\HeuristicLab.Constraints.XML</DocumentationFile>
    3737  </PropertyGroup>
     38  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     39    <DebugSymbols>true</DebugSymbols>
     40    <OutputPath>bin\x86\Debug\</OutputPath>
     41    <DefineConstants>DEBUG;TRACE</DefineConstants>
     42    <DebugType>full</DebugType>
     43    <PlatformTarget>x86</PlatformTarget>
     44    <ErrorReport>prompt</ErrorReport>
     45  </PropertyGroup>
     46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     47    <OutputPath>bin\x86\Release\</OutputPath>
     48    <DefineConstants>TRACE</DefineConstants>
     49    <DocumentationFile>bin\Release\HeuristicLab.Constraints.XML</DocumentationFile>
     50    <Optimize>true</Optimize>
     51    <DebugType>pdbonly</DebugType>
     52    <PlatformTarget>x86</PlatformTarget>
     53    <ErrorReport>prompt</ErrorReport>
     54  </PropertyGroup>
    3855  <ItemGroup>
    3956    <Reference Include="System" />
     
    215232  -->
    216233  <PropertyGroup>
    217     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     234    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    218235  </PropertyGroup>
    219236</Project>
  • TabularUnified trunk/sources/HeuristicLab.Core/HeuristicLab.Core.csproj

    r187 r564  
    5454    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    5555  </PropertyGroup>
     56  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     57    <DebugSymbols>true</DebugSymbols>
     58    <OutputPath>bin\x86\Debug\</OutputPath>
     59    <DefineConstants>DEBUG;TRACE</DefineConstants>
     60    <DebugType>full</DebugType>
     61    <PlatformTarget>x86</PlatformTarget>
     62    <ErrorReport>prompt</ErrorReport>
     63  </PropertyGroup>
     64  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     65    <OutputPath>bin\x86\Release\</OutputPath>
     66    <DefineConstants>TRACE</DefineConstants>
     67    <DocumentationFile>bin\Release\HeuristicLab.Core.XML</DocumentationFile>
     68    <Optimize>true</Optimize>
     69    <DebugType>pdbonly</DebugType>
     70    <PlatformTarget>x86</PlatformTarget>
     71    <ErrorReport>prompt</ErrorReport>
     72  </PropertyGroup>
    5673  <ItemGroup>
    5774    <Reference Include="System" />
     
    346363  -->
    347364  <PropertyGroup>
    348     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     365    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    349366  </PropertyGroup>
    350367</Project>
  • TabularUnified trunk/sources/HeuristicLab.Data/HeuristicLab.Data.csproj

    r188 r564  
    5454    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    5555  </PropertyGroup>
     56  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     57    <DebugSymbols>true</DebugSymbols>
     58    <OutputPath>bin\x86\Debug\</OutputPath>
     59    <DefineConstants>DEBUG;TRACE</DefineConstants>
     60    <DebugType>full</DebugType>
     61    <PlatformTarget>x86</PlatformTarget>
     62    <ErrorReport>prompt</ErrorReport>
     63  </PropertyGroup>
     64  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     65    <OutputPath>bin\x86\Release\</OutputPath>
     66    <DefineConstants>TRACE</DefineConstants>
     67    <DocumentationFile>bin\Release\HeuristicLab.Data.XML</DocumentationFile>
     68    <Optimize>true</Optimize>
     69    <DebugType>pdbonly</DebugType>
     70    <PlatformTarget>x86</PlatformTarget>
     71    <ErrorReport>prompt</ErrorReport>
     72  </PropertyGroup>
    5673  <ItemGroup>
    5774    <Reference Include="System" />
     
    290307  -->
    291308  <PropertyGroup>
    292     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     309    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    293310  </PropertyGroup>
    294311</Project>
  • TabularUnified trunk/sources/HeuristicLab.DataAnalysis/HeuristicLab.DataAnalysis.csproj

    r457 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.DataAnalysis.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.DataAnalysis.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    123140  -->
    124141  <PropertyGroup>
    125     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     142    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    126143  </PropertyGroup>
    127144</Project>
  • TabularUnified trunk/sources/HeuristicLab.DistributedEngine/HeuristicLab.DistributedEngine.csproj

    r375 r564  
    3131    <WarningLevel>4</WarningLevel>
    3232    <DocumentationFile>bin\Release\HeuristicLab.DistributedEngine.XML</DocumentationFile>
     33  </PropertyGroup>
     34  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     35    <DebugSymbols>true</DebugSymbols>
     36    <OutputPath>bin\x86\Debug\</OutputPath>
     37    <DefineConstants>DEBUG;TRACE</DefineConstants>
     38    <DebugType>full</DebugType>
     39    <PlatformTarget>x86</PlatformTarget>
     40    <ErrorReport>prompt</ErrorReport>
     41  </PropertyGroup>
     42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     43    <OutputPath>bin\x86\Release\</OutputPath>
     44    <DefineConstants>TRACE</DefineConstants>
     45    <DocumentationFile>bin\Release\HeuristicLab.DistributedEngine.XML</DocumentationFile>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3350  </PropertyGroup>
    3451  <ItemGroup>
     
    95112  -->
    96113  <PropertyGroup>
    97     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     114    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    98115  </PropertyGroup>
    99116</Project>
  • TabularUnified trunk/sources/HeuristicLab.ES/HeuristicLab.ES.csproj

    r214 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.ES.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.ES.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    125142  -->
    126143  <PropertyGroup>
    127     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     144    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    128145  </PropertyGroup>
    129146</Project>
  • TabularUnified trunk/sources/HeuristicLab.Evolutionary/HeuristicLab.Evolutionary.csproj

    r108 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Evolutionary.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Evolutionary.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    83100  -->
    84101  <PropertyGroup>
    85     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     102    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    86103  </PropertyGroup>
    87104</Project>
  • TabularUnified trunk/sources/HeuristicLab.Functions/HeuristicLab.Functions.csproj

    r524 r564  
    33    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    44    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    5     <ProductVersion>9.0.30729</ProductVersion>
     5    <ProductVersion>9.0.21022</ProductVersion>
    66    <SchemaVersion>2.0</SchemaVersion>
    77    <ProjectGuid>{B95CA6E2-34BC-4430-994D-BD6E99375319}</ProjectGuid>
     
    3636    <WarningLevel>4</WarningLevel>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Functions.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Functions.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
     55  </PropertyGroup>
     56  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release x64|x86' ">
     57    <OutputPath>bin\x86\Release x64\</OutputPath>
     58    <PlatformTarget>x86</PlatformTarget>
    3859  </PropertyGroup>
    3960  <ItemGroup>
     
    150171  -->
    151172  <PropertyGroup>
    152     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     173    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    153174  </PropertyGroup>
    154175</Project>
  • TabularUnified trunk/sources/HeuristicLab.Grid/HeuristicLab.Grid.csproj

    r500 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    118135  -->
    119136  <PropertyGroup>
    120     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     137    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    121138  </PropertyGroup>
    122139</Project>
  • TabularUnified trunk/sources/HeuristicLab.Logging/HeuristicLab.Logging.csproj

    r363 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Logging.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Logging.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    116133  -->
    117134  <PropertyGroup>
    118     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     135    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    119136  </PropertyGroup>
    120137</Project>
  • TabularUnified trunk/sources/HeuristicLab.Operators.Metaprogramming/HeuristicLab.Operators.Metaprogramming.csproj

    r489 r564  
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
     
    84100  -->
    85101  <PropertyGroup>
    86     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     102    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    87103  </PropertyGroup>
    88104</Project>
  • TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/HeuristicLab.Operators.Programmable.csproj

    r51 r564  
    3535    <WarningLevel>4</WarningLevel>
    3636    <DocumentationFile>bin\Release\HeuristicLab.Operators.Programmable.XML</DocumentationFile>
     37  </PropertyGroup>
     38  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     39    <DebugSymbols>true</DebugSymbols>
     40    <OutputPath>bin\x86\Debug\</OutputPath>
     41    <DefineConstants>DEBUG;TRACE</DefineConstants>
     42    <DebugType>full</DebugType>
     43    <PlatformTarget>x86</PlatformTarget>
     44    <ErrorReport>prompt</ErrorReport>
     45  </PropertyGroup>
     46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     47    <OutputPath>bin\x86\Release\</OutputPath>
     48    <DefineConstants>TRACE</DefineConstants>
     49    <DocumentationFile>bin\Release\HeuristicLab.Operators.Programmable.XML</DocumentationFile>
     50    <Optimize>true</Optimize>
     51    <DebugType>pdbonly</DebugType>
     52    <PlatformTarget>x86</PlatformTarget>
     53    <ErrorReport>prompt</ErrorReport>
    3754  </PropertyGroup>
    3855  <ItemGroup>
     
    91108  -->
    92109  <PropertyGroup>
    93     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     110    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    94111  </PropertyGroup>
    95112</Project>
  • TabularUnified trunk/sources/HeuristicLab.Operators.Stopwatch/HeuristicLab.Operators.Stopwatch.csproj

    r447 r564  
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
     34  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x86\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x86</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     44    <OutputPath>bin\x86\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x86</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
    3450  </PropertyGroup>
    3551  <ItemGroup>
     
    8197  -->
    8298  <PropertyGroup>
    83     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     99    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    84100  </PropertyGroup>
    85101</Project>
  • TabularUnified trunk/sources/HeuristicLab.Operators/HeuristicLab.Operators.csproj

    r311 r564  
    3838    <DocumentationFile>bin\Release\HeuristicLab.Operators.XML</DocumentationFile>
    3939    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
     40  </PropertyGroup>
     41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     42    <DebugSymbols>true</DebugSymbols>
     43    <OutputPath>bin\x86\Debug\</OutputPath>
     44    <DefineConstants>DEBUG;TRACE</DefineConstants>
     45    <DebugType>full</DebugType>
     46    <PlatformTarget>x86</PlatformTarget>
     47    <ErrorReport>prompt</ErrorReport>
     48  </PropertyGroup>
     49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     50    <OutputPath>bin\x86\Release\</OutputPath>
     51    <DefineConstants>TRACE</DefineConstants>
     52    <DocumentationFile>bin\Release\HeuristicLab.Operators.XML</DocumentationFile>
     53    <Optimize>true</Optimize>
     54    <DebugType>pdbonly</DebugType>
     55    <PlatformTarget>x86</PlatformTarget>
     56    <ErrorReport>prompt</ErrorReport>
    4057  </PropertyGroup>
    4158  <ItemGroup>
     
    140157  -->
    141158  <PropertyGroup>
    142     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     159    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    143160  </PropertyGroup>
    144161</Project>
  • TabularUnified trunk/sources/HeuristicLab.OptimizationFrontend/HeuristicLab.OptimizationFrontend.csproj

    r30 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.OptimizationFrontend.xml</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.OptimizationFrontend.xml</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    140157  -->
    141158  <PropertyGroup>
    142     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     159    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    143160  </PropertyGroup>
    144161</Project>
  • TabularUnified trunk/sources/HeuristicLab.Permutation/HeuristicLab.Permutation.csproj

    r84 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Permutation.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Permutation.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    117134  -->
    118135  <PropertyGroup>
    119     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     136    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    120137  </PropertyGroup>
    121138</Project>
  • TabularUnified trunk/sources/HeuristicLab.PluginInfrastructure.GUI/HeuristicLab.PluginInfrastructure.GUI.csproj

    r30 r564  
    3737    <WarningLevel>4</WarningLevel>
    3838    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.GUI.XML</DocumentationFile>
     39  </PropertyGroup>
     40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     41    <DebugSymbols>true</DebugSymbols>
     42    <OutputPath>bin\x86\Debug\</OutputPath>
     43    <DefineConstants>DEBUG;TRACE</DefineConstants>
     44    <DebugType>full</DebugType>
     45    <PlatformTarget>x86</PlatformTarget>
     46    <ErrorReport>prompt</ErrorReport>
     47  </PropertyGroup>
     48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     49    <OutputPath>bin\x86\Release\</OutputPath>
     50    <DefineConstants>TRACE</DefineConstants>
     51    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.GUI.XML</DocumentationFile>
     52    <Optimize>true</Optimize>
     53    <DebugType>pdbonly</DebugType>
     54    <PlatformTarget>x86</PlatformTarget>
     55    <ErrorReport>prompt</ErrorReport>
    3956  </PropertyGroup>
    4057  <ItemGroup>
     
    155172  -->
    156173  <PropertyGroup>
    157     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     174    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    158175  </PropertyGroup>
    159176</Project>
  • TabularUnified trunk/sources/HeuristicLab.PluginInfrastructure/HeuristicLab.PluginInfrastructure.csproj

    r91 r564  
    3838    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3939    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
     40  </PropertyGroup>
     41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     42    <DebugSymbols>true</DebugSymbols>
     43    <OutputPath>bin\x86\Debug\</OutputPath>
     44    <DefineConstants>DEBUG;TRACE</DefineConstants>
     45    <DebugType>full</DebugType>
     46    <PlatformTarget>x86</PlatformTarget>
     47    <ErrorReport>prompt</ErrorReport>
     48  </PropertyGroup>
     49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     50    <OutputPath>bin\x86\Release\</OutputPath>
     51    <DefineConstants>TRACE</DefineConstants>
     52    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
     53    <Optimize>true</Optimize>
     54    <DebugType>pdbonly</DebugType>
     55    <PlatformTarget>x86</PlatformTarget>
     56    <ErrorReport>prompt</ErrorReport>
    4057  </PropertyGroup>
    4158  <ItemGroup>
     
    99116  -->
    100117  <PropertyGroup>
    101     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     118    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    102119  </PropertyGroup>
    103120</Project>
  • TabularUnified trunk/sources/HeuristicLab.Random/HeuristicLab.Random.csproj

    r30 r564  
    3838    <DocumentationFile>bin\Release\HeuristicLab.Random.XML</DocumentationFile>
    3939    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
     40  </PropertyGroup>
     41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     42    <DebugSymbols>true</DebugSymbols>
     43    <OutputPath>bin\x86\Debug\</OutputPath>
     44    <DefineConstants>DEBUG;TRACE</DefineConstants>
     45    <DebugType>full</DebugType>
     46    <PlatformTarget>x86</PlatformTarget>
     47    <ErrorReport>prompt</ErrorReport>
     48  </PropertyGroup>
     49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     50    <OutputPath>bin\x86\Release\</OutputPath>
     51    <DefineConstants>TRACE</DefineConstants>
     52    <DocumentationFile>bin\Release\HeuristicLab.Random.XML</DocumentationFile>
     53    <Optimize>true</Optimize>
     54    <DebugType>pdbonly</DebugType>
     55    <PlatformTarget>x86</PlatformTarget>
     56    <ErrorReport>prompt</ErrorReport>
    4057  </PropertyGroup>
    4158  <ItemGroup>
     
    92109  -->
    93110  <PropertyGroup>
    94     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     111    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    95112  </PropertyGroup>
    96113</Project>
  • TabularUnified trunk/sources/HeuristicLab.RealVector/HeuristicLab.RealVector.csproj

    r293 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.RealVector.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.RealVector.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    105122  -->
    106123  <PropertyGroup>
    107     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     124    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    108125  </PropertyGroup>
    109126</Project>
  • TabularUnified trunk/sources/HeuristicLab.Routing.TSP/HeuristicLab.Routing.TSP.csproj

    r30 r564  
    3838    <DocumentationFile>bin\Release\HeuristicLab.Routing.TSP.XML</DocumentationFile>
    3939    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
     40  </PropertyGroup>
     41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     42    <DebugSymbols>true</DebugSymbols>
     43    <OutputPath>bin\x86\Debug\</OutputPath>
     44    <DefineConstants>DEBUG;TRACE</DefineConstants>
     45    <DebugType>full</DebugType>
     46    <PlatformTarget>x86</PlatformTarget>
     47    <ErrorReport>prompt</ErrorReport>
     48  </PropertyGroup>
     49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     50    <OutputPath>bin\x86\Release\</OutputPath>
     51    <DefineConstants>TRACE</DefineConstants>
     52    <DocumentationFile>bin\Release\HeuristicLab.Routing.TSP.XML</DocumentationFile>
     53    <Optimize>true</Optimize>
     54    <DebugType>pdbonly</DebugType>
     55    <PlatformTarget>x86</PlatformTarget>
     56    <ErrorReport>prompt</ErrorReport>
    4057  </PropertyGroup>
    4158  <ItemGroup>
     
    120137  -->
    121138  <PropertyGroup>
    122     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     139    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    123140  </PropertyGroup>
    124141</Project>
  • TabularUnified trunk/sources/HeuristicLab.SGA/HeuristicLab.SGA.csproj

    r30 r564  
    3535    <WarningLevel>4</WarningLevel>
    3636    <DocumentationFile>bin\Release\HeuristicLab.SGA.XML</DocumentationFile>
     37  </PropertyGroup>
     38  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     39    <DebugSymbols>true</DebugSymbols>
     40    <OutputPath>bin\x86\Debug\</OutputPath>
     41    <DefineConstants>DEBUG;TRACE</DefineConstants>
     42    <DebugType>full</DebugType>
     43    <PlatformTarget>x86</PlatformTarget>
     44    <ErrorReport>prompt</ErrorReport>
     45  </PropertyGroup>
     46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     47    <OutputPath>bin\x86\Release\</OutputPath>
     48    <DefineConstants>TRACE</DefineConstants>
     49    <DocumentationFile>bin\Release\HeuristicLab.SGA.XML</DocumentationFile>
     50    <Optimize>true</Optimize>
     51    <DebugType>pdbonly</DebugType>
     52    <PlatformTarget>x86</PlatformTarget>
     53    <ErrorReport>prompt</ErrorReport>
    3754  </PropertyGroup>
    3855  <ItemGroup>
     
    111128  -->
    112129  <PropertyGroup>
    113     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     130    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    114131  </PropertyGroup>
    115132</Project>
  • TabularUnified trunk/sources/HeuristicLab.SQLite/HeuristicLab.SQLite.csproj

    r360 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.SQLite.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.SQLite.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    7592  -->
    7693  <PropertyGroup>
    77     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     94    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    7895  </PropertyGroup>
    7996</Project>
  • TabularUnified trunk/sources/HeuristicLab.Scheduling.JSSP/HeuristicLab.Scheduling.JSSP.csproj

    r269 r564  
    5252    <WarningLevel>4</WarningLevel>
    5353    <DocumentationFile>bin\Release\HeuristicLab.Scheduling.JSSP.XML</DocumentationFile>
     54  </PropertyGroup>
     55  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     56    <DebugSymbols>true</DebugSymbols>
     57    <OutputPath>bin\x86\Debug\</OutputPath>
     58    <DefineConstants>DEBUG;TRACE</DefineConstants>
     59    <DebugType>pdbonly</DebugType>
     60    <PlatformTarget>x86</PlatformTarget>
     61    <ErrorReport>prompt</ErrorReport>
     62  </PropertyGroup>
     63  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     64    <OutputPath>bin\x86\Release\</OutputPath>
     65    <DefineConstants>TRACE</DefineConstants>
     66    <DocumentationFile>bin\Release\HeuristicLab.Scheduling.JSSP.XML</DocumentationFile>
     67    <Optimize>true</Optimize>
     68    <DebugType>pdbonly</DebugType>
     69    <PlatformTarget>x86</PlatformTarget>
     70    <ErrorReport>prompt</ErrorReport>
    5471  </PropertyGroup>
    5572  <ItemGroup>
     
    163180  -->
    164181  <PropertyGroup>
    165     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     182    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    166183  </PropertyGroup>
    167184</Project>
  • TabularUnified trunk/sources/HeuristicLab.Selection.OffspringSelection/HeuristicLab.Selection.OffspringSelection.csproj

    r30 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Selection.OffspringSelection.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Selection.OffspringSelection.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    7592  -->
    7693  <PropertyGroup>
    77     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     94    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    7895  </PropertyGroup>
    7996</Project>
  • TabularUnified trunk/sources/HeuristicLab.Selection/HeuristicLab.Selection.csproj

    r30 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.Selection.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.Selection.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    90107  -->
    91108  <PropertyGroup>
    92     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     109    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    93110  </PropertyGroup>
    94111</Project>
  • TabularUnified trunk/sources/HeuristicLab.SequentialEngine/HeuristicLab.SequentialEngine.csproj

    r30 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.SequentialEngine.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.SequentialEngine.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    7895  -->
    7996  <PropertyGroup>
    80     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     97    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    8198  </PropertyGroup>
    8299</Project>
  • TabularUnified trunk/sources/HeuristicLab.StructureIdentification/HeuristicLab.StructureIdentification.csproj

    r532 r564  
    3636    <WarningLevel>4</WarningLevel>
    3737    <DocumentationFile>bin\Release\HeuristicLab.StructureIdentification.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.StructureIdentification.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    155172  -->
    156173  <PropertyGroup>
    157     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     174    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    158175  </PropertyGroup>
    159176</Project>
  • TabularUnified trunk/sources/HeuristicLab.TestFunctions/HeuristicLab.TestFunctions.csproj

    r291 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.TestFunctions.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.TestFunctions.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    101118  -->
    102119  <PropertyGroup>
    103     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     120    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    104121  </PropertyGroup>
    105122</Project>
  • TabularUnified trunk/sources/HeuristicLab.ThreadParallelEngine/HeuristicLab.ThreadParallelEngine.csproj

    r30 r564  
    3636    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    3737    <DocumentationFile>bin\Release\HeuristicLab.ThreadParallelEngine.XML</DocumentationFile>
     38  </PropertyGroup>
     39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     40    <DebugSymbols>true</DebugSymbols>
     41    <OutputPath>bin\x86\Debug\</OutputPath>
     42    <DefineConstants>DEBUG;TRACE</DefineConstants>
     43    <DebugType>full</DebugType>
     44    <PlatformTarget>x86</PlatformTarget>
     45    <ErrorReport>prompt</ErrorReport>
     46  </PropertyGroup>
     47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     48    <OutputPath>bin\x86\Release\</OutputPath>
     49    <DefineConstants>TRACE</DefineConstants>
     50    <DocumentationFile>bin\Release\HeuristicLab.ThreadParallelEngine.XML</DocumentationFile>
     51    <Optimize>true</Optimize>
     52    <DebugType>pdbonly</DebugType>
     53    <PlatformTarget>x86</PlatformTarget>
     54    <ErrorReport>prompt</ErrorReport>
    3855  </PropertyGroup>
    3956  <ItemGroup>
     
    7895  -->
    7996  <PropertyGroup>
    80     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     97    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    8198  </PropertyGroup>
    8299</Project>
  • TabularUnified trunk/sources/HeuristicLab.sln

    r561 r564  
    132132    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    133133    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
    134     {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|x86.ActiveCfg = Debug|Any CPU
     134    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|x86.ActiveCfg = Debug|x86
     135    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|x86.Build.0 = Debug|x86
    135136    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
    136137    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Release|Any CPU.Build.0 = Release|Any CPU
    137     {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Release|x86.ActiveCfg = Release|Any CPU
     138    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Release|x86.ActiveCfg = Release|x86
     139    {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Release|x86.Build.0 = Release|x86
    138140    {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    139141    {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    162164    {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    163165    {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|Any CPU.Build.0 = Debug|Any CPU
    164     {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|x86.ActiveCfg = Debug|Any CPU
     166    {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|x86.ActiveCfg = Debug|x86
     167    {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|x86.Build.0 = Debug|x86
    165168    {B4BE8E53-BA06-4237-9A01-24255F880201}.Release|Any CPU.ActiveCfg = Release|Any CPU
    166169    {B4BE8E53-BA06-4237-9A01-24255F880201}.Release|Any CPU.Build.0 = Release|Any CPU
    167     {B4BE8E53-BA06-4237-9A01-24255F880201}.Release|x86.ActiveCfg = Release|Any CPU
     170    {B4BE8E53-BA06-4237-9A01-24255F880201}.Release|x86.ActiveCfg = Release|x86
     171    {B4BE8E53-BA06-4237-9A01-24255F880201}.Release|x86.Build.0 = Release|x86
    168172    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    169173    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
    170     {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|x86.ActiveCfg = Debug|Any CPU
     174    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|x86.ActiveCfg = Debug|x86
     175    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|x86.Build.0 = Debug|x86
    171176    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
    172177    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Release|Any CPU.Build.0 = Release|Any CPU
    173     {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Release|x86.ActiveCfg = Release|Any CPU
     178    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Release|x86.ActiveCfg = Release|x86
     179    {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Release|x86.Build.0 = Release|x86
    174180    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    175181    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|Any CPU.Build.0 = Debug|Any CPU
    176     {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|x86.ActiveCfg = Debug|Any CPU
     182    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|x86.ActiveCfg = Debug|x86
     183    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|x86.Build.0 = Debug|x86
    177184    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Release|Any CPU.ActiveCfg = Release|Any CPU
    178185    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Release|Any CPU.Build.0 = Release|Any CPU
    179     {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Release|x86.ActiveCfg = Release|Any CPU
     186    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Release|x86.ActiveCfg = Release|x86
     187    {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Release|x86.Build.0 = Release|x86
    180188    {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    181189    {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|Any CPU.Build.0 = Debug|Any CPU
    182     {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|x86.ActiveCfg = Debug|Any CPU
     190    {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|x86.ActiveCfg = Debug|x86
     191    {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|x86.Build.0 = Debug|x86
    183192    {F5614C53-153C-4A37-A608-121E1C087F07}.Release|Any CPU.ActiveCfg = Release|Any CPU
    184193    {F5614C53-153C-4A37-A608-121E1C087F07}.Release|Any CPU.Build.0 = Release|Any CPU
    185     {F5614C53-153C-4A37-A608-121E1C087F07}.Release|x86.ActiveCfg = Release|Any CPU
     194    {F5614C53-153C-4A37-A608-121E1C087F07}.Release|x86.ActiveCfg = Release|x86
     195    {F5614C53-153C-4A37-A608-121E1C087F07}.Release|x86.Build.0 = Release|x86
    186196    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    187197    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|Any CPU.Build.0 = Debug|Any CPU
    188     {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|x86.ActiveCfg = Debug|Any CPU
     198    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|x86.ActiveCfg = Debug|x86
     199    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|x86.Build.0 = Debug|x86
    189200    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Release|Any CPU.ActiveCfg = Release|Any CPU
    190201    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Release|Any CPU.Build.0 = Release|Any CPU
    191     {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Release|x86.ActiveCfg = Release|Any CPU
     202    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Release|x86.ActiveCfg = Release|x86
     203    {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Release|x86.Build.0 = Release|x86
    192204    {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    193205    {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
    194     {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|x86.ActiveCfg = Debug|Any CPU
     206    {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|x86.ActiveCfg = Debug|x86
     207    {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|x86.Build.0 = Debug|x86
    195208    {205898D3-2717-4686-AF17-52409B7EC0C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
    196209    {205898D3-2717-4686-AF17-52409B7EC0C6}.Release|Any CPU.Build.0 = Release|Any CPU
    197     {205898D3-2717-4686-AF17-52409B7EC0C6}.Release|x86.ActiveCfg = Release|Any CPU
     210    {205898D3-2717-4686-AF17-52409B7EC0C6}.Release|x86.ActiveCfg = Release|x86
     211    {205898D3-2717-4686-AF17-52409B7EC0C6}.Release|x86.Build.0 = Release|x86
    198212    {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    199213    {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    206220    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    207221    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|Any CPU.Build.0 = Debug|Any CPU
    208     {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|x86.ActiveCfg = Debug|Any CPU
     222    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|x86.ActiveCfg = Debug|x86
     223    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|x86.Build.0 = Debug|x86
    209224    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Release|Any CPU.ActiveCfg = Release|Any CPU
    210225    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Release|Any CPU.Build.0 = Release|Any CPU
    211     {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Release|x86.ActiveCfg = Release|Any CPU
     226    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Release|x86.ActiveCfg = Release|x86
     227    {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Release|x86.Build.0 = Release|x86
    212228    {B462D3CC-8866-42F0-9832-AD0967613B72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    213229    {B462D3CC-8866-42F0-9832-AD0967613B72}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    228244    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    229245    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|Any CPU.Build.0 = Debug|Any CPU
    230     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|x86.ActiveCfg = Debug|Any CPU
     246    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|x86.ActiveCfg = Debug|x86
     247    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Debug|x86.Build.0 = Debug|x86
    231248    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|Any CPU.ActiveCfg = Release|Any CPU
    232249    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|Any CPU.Build.0 = Release|Any CPU
    233     {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|x86.ActiveCfg = Release|Any CPU
     250    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|x86.ActiveCfg = Release|x86
     251    {B95CA6E2-34BC-4430-994D-BD6E99375319}.Release|x86.Build.0 = Release|x86
    234252    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    235253    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|Any CPU.Build.0 = Debug|Any CPU
    236     {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|x86.ActiveCfg = Debug|Any CPU
     254    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|x86.ActiveCfg = Debug|x86
     255    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|x86.Build.0 = Debug|x86
    237256    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Release|Any CPU.ActiveCfg = Release|Any CPU
    238257    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Release|Any CPU.Build.0 = Release|Any CPU
    239     {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Release|x86.ActiveCfg = Release|Any CPU
     258    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Release|x86.ActiveCfg = Release|x86
     259    {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Release|x86.Build.0 = Release|x86
    240260    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    241261    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|Any CPU.Build.0 = Debug|Any CPU
    242     {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|x86.ActiveCfg = Debug|Any CPU
     262    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|x86.ActiveCfg = Debug|x86
     263    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|x86.Build.0 = Debug|x86
    243264    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|Any CPU.ActiveCfg = Release|Any CPU
    244265    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|Any CPU.Build.0 = Release|Any CPU
    245     {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|x86.ActiveCfg = Release|Any CPU
     266    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|x86.ActiveCfg = Release|x86
     267    {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Release|x86.Build.0 = Release|x86
    246268    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    247269    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|Any CPU.Build.0 = Debug|Any CPU
    248     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|x86.ActiveCfg = Debug|Any CPU
     270    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|x86.ActiveCfg = Debug|x86
     271    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Debug|x86.Build.0 = Debug|x86
    249272    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|Any CPU.ActiveCfg = Release|Any CPU
    250273    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|Any CPU.Build.0 = Release|Any CPU
    251     {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|x86.ActiveCfg = Release|Any CPU
     274    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|x86.ActiveCfg = Release|x86
     275    {5948F299-0A5E-43B9-8F17-2D15298EEC34}.Release|x86.Build.0 = Release|x86
    252276    {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    253277    {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    260284    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    261285    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
    262     {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|x86.ActiveCfg = Debug|Any CPU
     286    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|x86.ActiveCfg = Debug|x86
     287    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|x86.Build.0 = Debug|x86
    263288    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
    264289    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Release|Any CPU.Build.0 = Release|Any CPU
    265     {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Release|x86.ActiveCfg = Release|Any CPU
     290    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Release|x86.ActiveCfg = Release|x86
     291    {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Release|x86.Build.0 = Release|x86
    266292    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    267293    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
    268     {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|x86.ActiveCfg = Debug|Any CPU
     294    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|x86.ActiveCfg = Debug|x86
     295    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|x86.Build.0 = Debug|x86
    269296    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
    270297    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Release|Any CPU.Build.0 = Release|Any CPU
    271     {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Release|x86.ActiveCfg = Release|Any CPU
     298    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Release|x86.ActiveCfg = Release|x86
     299    {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Release|x86.Build.0 = Release|x86
    272300    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    273301    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|Any CPU.Build.0 = Debug|Any CPU
    274     {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|x86.ActiveCfg = Debug|Any CPU
     302    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|x86.ActiveCfg = Debug|x86
     303    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|x86.Build.0 = Debug|x86
    275304    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Release|Any CPU.ActiveCfg = Release|Any CPU
    276305    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Release|Any CPU.Build.0 = Release|Any CPU
    277     {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Release|x86.ActiveCfg = Release|Any CPU
     306    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Release|x86.ActiveCfg = Release|x86
     307    {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Release|x86.Build.0 = Release|x86
    278308    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    279309    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|Any CPU.Build.0 = Debug|Any CPU
    280     {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|x86.ActiveCfg = Debug|Any CPU
     310    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|x86.ActiveCfg = Debug|x86
     311    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|x86.Build.0 = Debug|x86
    281312    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Release|Any CPU.ActiveCfg = Release|Any CPU
    282313    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Release|Any CPU.Build.0 = Release|Any CPU
    283     {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Release|x86.ActiveCfg = Release|Any CPU
     314    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Release|x86.ActiveCfg = Release|x86
     315    {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Release|x86.Build.0 = Release|x86
    284316    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    285317    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|Any CPU.Build.0 = Debug|Any CPU
    286     {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|x86.ActiveCfg = Debug|Any CPU
     318    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|x86.ActiveCfg = Debug|x86
     319    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|x86.Build.0 = Debug|x86
    287320    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Release|Any CPU.ActiveCfg = Release|Any CPU
    288321    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Release|Any CPU.Build.0 = Release|Any CPU
    289     {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Release|x86.ActiveCfg = Release|Any CPU
     322    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Release|x86.ActiveCfg = Release|x86
     323    {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Release|x86.Build.0 = Release|x86
    290324    {74752FCD-9E10-48DB-9AF2-AF5518B62807}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    291325    {74752FCD-9E10-48DB-9AF2-AF5518B62807}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    298332    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    299333    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|Any CPU.Build.0 = Debug|Any CPU
    300     {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|x86.ActiveCfg = Debug|Any CPU
     334    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|x86.ActiveCfg = Debug|x86
     335    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|x86.Build.0 = Debug|x86
    301336    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Release|Any CPU.ActiveCfg = Release|Any CPU
    302337    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Release|Any CPU.Build.0 = Release|Any CPU
    303     {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Release|x86.ActiveCfg = Release|Any CPU
     338    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Release|x86.ActiveCfg = Release|x86
     339    {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Release|x86.Build.0 = Release|x86
    304340    {545CE756-98D8-423B-AC2E-6E7D70926E5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    305341    {545CE756-98D8-423B-AC2E-6E7D70926E5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    312348    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    313349    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|Any CPU.Build.0 = Debug|Any CPU
    314     {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|x86.ActiveCfg = Debug|Any CPU
     350    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|x86.ActiveCfg = Debug|x86
     351    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|x86.Build.0 = Debug|x86
    315352    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Release|Any CPU.ActiveCfg = Release|Any CPU
    316353    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Release|Any CPU.Build.0 = Release|Any CPU
    317     {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Release|x86.ActiveCfg = Release|Any CPU
     354    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Release|x86.ActiveCfg = Release|x86
     355    {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Release|x86.Build.0 = Release|x86
    318356    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    319357    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|Any CPU.Build.0 = Debug|Any CPU
    320     {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|x86.ActiveCfg = Debug|Any CPU
     358    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|x86.ActiveCfg = Debug|x86
     359    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|x86.Build.0 = Debug|x86
    321360    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Release|Any CPU.ActiveCfg = Release|Any CPU
    322361    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Release|Any CPU.Build.0 = Release|Any CPU
    323     {6960CBCD-E44B-49B0-BA86-671091C42C36}.Release|x86.ActiveCfg = Release|Any CPU
     362    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Release|x86.ActiveCfg = Release|x86
     363    {6960CBCD-E44B-49B0-BA86-671091C42C36}.Release|x86.Build.0 = Release|x86
    324364    {4F9BB789-D561-436B-B226-2BF44B7D0804}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    325365    {4F9BB789-D561-436B-B226-2BF44B7D0804}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    364404    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    365405    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|Any CPU.Build.0 = Debug|Any CPU
    366     {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|x86.ActiveCfg = Debug|Any CPU
     406    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|x86.ActiveCfg = Debug|x86
     407    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|x86.Build.0 = Debug|x86
    367408    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Release|Any CPU.ActiveCfg = Release|Any CPU
    368409    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Release|Any CPU.Build.0 = Release|Any CPU
    369     {39DEF061-8261-43DB-8B3B-C7555251FF77}.Release|x86.ActiveCfg = Release|Any CPU
     410    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Release|x86.ActiveCfg = Release|x86
     411    {39DEF061-8261-43DB-8B3B-C7555251FF77}.Release|x86.Build.0 = Release|x86
    370412    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    371413    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|Any CPU.Build.0 = Debug|Any CPU
    372     {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|x86.ActiveCfg = Debug|Any CPU
     414    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|x86.ActiveCfg = Debug|x86
     415    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|x86.Build.0 = Debug|x86
    373416    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Release|Any CPU.ActiveCfg = Release|Any CPU
    374417    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Release|Any CPU.Build.0 = Release|Any CPU
    375     {F18FD554-19B9-460C-9A49-4AA8D7245727}.Release|x86.ActiveCfg = Release|Any CPU
     418    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Release|x86.ActiveCfg = Release|x86
     419    {F18FD554-19B9-460C-9A49-4AA8D7245727}.Release|x86.Build.0 = Release|x86
    376420    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    377421    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
    378     {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|x86.ActiveCfg = Debug|Any CPU
    379     {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|x86.Build.0 = Debug|Any CPU
     422    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|x86.ActiveCfg = Debug|x86
     423    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Debug|x86.Build.0 = Debug|x86
    380424    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
    381425    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Release|Any CPU.Build.0 = Release|Any CPU
    382     {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Release|x86.ActiveCfg = Release|Any CPU
     426    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Release|x86.ActiveCfg = Release|x86
     427    {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Release|x86.Build.0 = Release|x86
    383428  EndGlobalSection
    384429  GlobalSection(SolutionProperties) = preSolution
  • TabularUnified trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r559 r564  
    1 copy "..\..\..\HeuristicLab.PluginInfrastructure.GUI\ICSharpCode.SharpZipLib License.txt" .\
     1copy "%1\HeuristicLab.PluginInfrastructure.GUI\ICSharpCode.SharpZipLib License.txt" .\
    22
    33rmdir plugins /s /q
     
    66mkdir plugins\temp
    77mkdir plugins\backup
    8 copy "..\..\..\HeuristicLab.AdvancedOptimizationFrontend\bin\%1\HeuristicLab.AdvancedOptimizationFrontend.dll" .\plugins
    9 copy "..\..\..\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking.dll" .\plugins
    10 copy "..\..\..\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking License.txt" .\plugins
    11 copy "..\..\..\HeuristicLab.BitVector\bin\%1\HeuristicLab.BitVector.dll" .\plugins
    12 copy "..\..\..\HeuristicLab.CEDMA.Charting\bin\%1\HeuristicLab.CEDMA.Charting.dll" .\plugins
    13 copy "..\..\..\HeuristicLab.CEDMA.Core\bin\%1\HeuristicLab.CEDMA.Core.dll" .\plugins
    14 copy "..\..\..\HeuristicLab.CEDMA.DB\bin\%1\HeuristicLab.CEDMA.DB.dll" .\plugins
    15 copy "..\..\..\HeuristicLab.CEDMA.DB\bin\%1\SemWeb.SqliteStore.dll" .\plugins
    16 copy "..\..\..\HeuristicLab.CEDMA.DB\bin\%1\SemWeb.dll" .\plugins
    17 copy "..\..\..\HeuristicLab.CEDMA.DB.Interfaces\bin\%1\HeuristicLab.CEDMA.DB.Interfaces.dll" .\plugins
    18 copy "..\..\..\HeuristicLab.CEDMA.Operators\bin\%1\HeuristicLab.CEDMA.Operators.dll" .\plugins
    19 copy "..\..\..\HeuristicLab.CEDMA.Server\bin\%1\HeuristicLab.CEDMA.Server.dll" .\plugins
    20 copy "..\..\..\HeuristicLab.Charting\bin\%1\HeuristicLab.Charting.dll" .\plugins
    21 copy "..\..\..\HeuristicLab.Charting.Data\bin\%1\HeuristicLab.Charting.Data.dll" .\plugins
    22 copy "..\..\..\HeuristicLab.Core\bin\%1\HeuristicLab.Core.dll" .\plugins
    23 copy "..\..\..\HeuristicLab.Constraints\bin\%1\HeuristicLab.Constraints.dll" .\plugins
    24 copy "..\..\..\HeuristicLab.Data\bin\%1\HeuristicLab.Data.dll" .\plugins
    25 copy "..\..\..\HeuristicLab.DataAnalysis\bin\%1\HeuristicLab.DataAnalysis.dll" .\plugins
    26 copy "..\..\..\HeuristicLab.DistributedEngine\bin\%1\HeuristicLab.DistributedEngine.dll" .\plugins
    27 copy "..\..\..\HeuristicLab.Evolutionary\bin\%1\HeuristicLab.Evolutionary.dll" .\plugins
    28 copy "..\..\..\HeuristicLab.Functions\bin\%1\HeuristicLab.Functions.dll" .\plugins
    29 copy "..\..\..\HeuristicLab.Grid\bin\%1\HeuristicLab.Grid.dll" .\plugins
    30 copy "..\..\..\HeuristicLab.Logging\bin\%1\HeuristicLab.Logging.dll" .\plugins
    31 copy "..\..\..\HeuristicLab.Operators\bin\%1\HeuristicLab.Operators.dll" .\plugins
    32 copy "..\..\..\HeuristicLab.Operators.Metaprogramming\bin\%1\HeuristicLab.Operators.Metaprogramming.dll" .\plugins
    33 copy "..\..\..\HeuristicLab.Operators.Programmable\bin\%1\HeuristicLab.Operators.Programmable.dll" .\plugins
    34 copy "..\..\..\HeuristicLab.Operators.Stopwatch\bin\%1\HeuristicLab.Operators.Stopwatch.dll" .\plugins
    35 copy "..\..\..\HeuristicLab.OptimizationFrontend\bin\%1\HeuristicLab.OptimizationFrontend.dll" .\plugins
    36 copy "..\..\..\HeuristicLab.Permutation\bin\%1\HeuristicLab.Permutation.dll" .\plugins
    37 copy "..\..\..\HeuristicLab.Random\bin\%1\HeuristicLab.Random.dll" .\plugins
    38 copy "..\..\..\HeuristicLab.RealVector\bin\%1\HeuristicLab.RealVector.dll" .\plugins
    39 copy "..\..\..\HeuristicLab.Routing.TSP\bin\%1\HeuristicLab.Routing.TSP.dll" .\plugins
    40 copy "..\..\..\HeuristicLab.Scheduling.JSSP\bin\%1\HeuristicLab.Scheduling.JSSP.dll" .\plugins
    41 copy "..\..\..\HeuristicLab.Selection\bin\%1\HeuristicLab.Selection.dll" .\plugins
    42 copy "..\..\..\HeuristicLab.Selection.OffspringSelection\bin\%1\HeuristicLab.Selection.OffspringSelection.dll" .\plugins
    43 copy "..\..\..\HeuristicLab.SequentialEngine\bin\%1\HeuristicLab.SequentialEngine.dll" .\plugins
    44 copy "..\..\..\HeuristicLab.SGA\bin\%1\HeuristicLab.SGA.dll" .\plugins
    45 copy "..\..\..\HeuristicLab.SQLite\bin\%1\HeuristicLab.SQLite.dll" .\plugins
    46 copy "..\..\..\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
    47 copy "..\..\..\HeuristicLab.SQLite\SQLite License.txt" .\plugins
    48 copy "..\..\..\HeuristicLab.SQLite\SQLite.NET.chm" .\plugins
    49 copy "..\..\..\HeuristicLab.StructureIdentification\bin\%1\HeuristicLab.StructureIdentification.dll" .\plugins
    50 copy "..\..\..\HeuristicLab.TestFunctions\bin\%1\HeuristicLab.TestFunctions.dll" .\plugins
    51 copy "..\..\..\HeuristicLab.ThreadParallelEngine\bin\%1\HeuristicLab.ThreadParallelEngine.dll" .\plugins
    52 copy "..\..\..\HeuristicLab.ES\bin\%1\HeuristicLab.ES.dll" .\plugins
     8copy "%1\HeuristicLab.AdvancedOptimizationFrontend\%2\HeuristicLab.AdvancedOptimizationFrontend.dll" .\plugins
     9copy "%1\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking.dll" .\plugins
     10copy "%1\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking License.txt" .\plugins
     11copy "%1\HeuristicLab.BitVector\%2\HeuristicLab.BitVector.dll" .\plugins
     12copy "%1\HeuristicLab.CEDMA.Charting\%2\HeuristicLab.CEDMA.Charting.dll" .\plugins
     13copy "%1\HeuristicLab.CEDMA.Core\%2\HeuristicLab.CEDMA.Core.dll" .\plugins
     14copy "%1\HeuristicLab.CEDMA.DB\%2\HeuristicLab.CEDMA.DB.dll" .\plugins
     15copy "%1\HeuristicLab.CEDMA.DB\%2\SemWeb.SqliteStore.dll" .\plugins
     16copy "%1\HeuristicLab.CEDMA.DB\%2\SemWeb.dll" .\plugins
     17copy "%1\HeuristicLab.CEDMA.DB.Interfaces\%2\HeuristicLab.CEDMA.DB.Interfaces.dll" .\plugins
     18copy "%1\HeuristicLab.CEDMA.Operators\%2\HeuristicLab.CEDMA.Operators.dll" .\plugins
     19copy "%1\HeuristicLab.CEDMA.Server\%2\HeuristicLab.CEDMA.Server.dll" .\plugins
     20copy "%1\HeuristicLab.Charting\%2\HeuristicLab.Charting.dll" .\plugins
     21copy "%1\HeuristicLab.Charting.Data\%2\HeuristicLab.Charting.Data.dll" .\plugins
     22copy "%1\HeuristicLab.Core\%2\HeuristicLab.Core.dll" .\plugins
     23copy "%1\HeuristicLab.Constraints\%2\HeuristicLab.Constraints.dll" .\plugins
     24copy "%1\HeuristicLab.Data\%2\HeuristicLab.Data.dll" .\plugins
     25copy "%1\HeuristicLab.DataAnalysis\%2\HeuristicLab.DataAnalysis.dll" .\plugins
     26copy "%1\HeuristicLab.DistributedEngine\%2\HeuristicLab.DistributedEngine.dll" .\plugins
     27copy "%1\HeuristicLab.Evolutionary\%2\HeuristicLab.Evolutionary.dll" .\plugins
     28copy "%1\HeuristicLab.Functions\%2\HeuristicLab.Functions.dll" .\plugins
     29copy "%1\HeuristicLab.Grid\%2\HeuristicLab.Grid.dll" .\plugins
     30copy "%1\HeuristicLab.Logging\%2\HeuristicLab.Logging.dll" .\plugins
     31copy "%1\HeuristicLab.Operators\%2\HeuristicLab.Operators.dll" .\plugins
     32copy "%1\HeuristicLab.Operators.Metaprogramming\%2\HeuristicLab.Operators.Metaprogramming.dll" .\plugins
     33copy "%1\HeuristicLab.Operators.Programmable\%2\HeuristicLab.Operators.Programmable.dll" .\plugins
     34copy "%1\HeuristicLab.Operators.Stopwatch\%2\HeuristicLab.Operators.Stopwatch.dll" .\plugins
     35copy "%1\HeuristicLab.OptimizationFrontend\%2\HeuristicLab.OptimizationFrontend.dll" .\plugins
     36copy "%1\HeuristicLab.Permutation\%2\HeuristicLab.Permutation.dll" .\plugins
     37copy "%1\HeuristicLab.Random\%2\HeuristicLab.Random.dll" .\plugins
     38copy "%1\HeuristicLab.RealVector\%2\HeuristicLab.RealVector.dll" .\plugins
     39copy "%1\HeuristicLab.Routing.TSP\%2\HeuristicLab.Routing.TSP.dll" .\plugins
     40copy "%1\HeuristicLab.Scheduling.JSSP\%2\HeuristicLab.Scheduling.JSSP.dll" .\plugins
     41copy "%1\HeuristicLab.Selection\%2\HeuristicLab.Selection.dll" .\plugins
     42copy "%1\HeuristicLab.Selection.OffspringSelection\%2\HeuristicLab.Selection.OffspringSelection.dll" .\plugins
     43copy "%1\HeuristicLab.SequentialEngine\%2\HeuristicLab.SequentialEngine.dll" .\plugins
     44copy "%1\HeuristicLab.SGA\%2\HeuristicLab.SGA.dll" .\plugins
     45copy "%1\HeuristicLab.SQLite\%2\HeuristicLab.SQLite.dll" .\plugins
     46copy "%1\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
     47copy "%1\HeuristicLab.SQLite\SQLite License.txt" .\plugins
     48copy "%1\HeuristicLab.SQLite\SQLite.NET.chm" .\plugins
     49copy "%1\HeuristicLab.StructureIdentification\%2\HeuristicLab.StructureIdentification.dll" .\plugins
     50copy "%1\HeuristicLab.TestFunctions\%2\HeuristicLab.TestFunctions.dll" .\plugins
     51copy "%1\HeuristicLab.ThreadParallelEngine\%2\HeuristicLab.ThreadParallelEngine.dll" .\plugins
     52copy "%1\HeuristicLab.ES\%2\HeuristicLab.ES.dll" .\plugins
  • TabularUnified trunk/sources/HeuristicLab/HeuristicLab.csproj

    r561 r564  
    140140  -->
    141141  <PropertyGroup>
    142     <PostBuildEvent>cmd /c ..\..\CopyAssemblies.cmd $(ConfigurationName)
    143 cmd /c ..\..\UpdateLocalInstallation.cmd $(ConfigurationName)</PostBuildEvent>
    144     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     142    <PostBuildEvent>cmd /c $(ProjectDir)CopyAssemblies.cmd $(SolutionDir) $(Outdir)
     143cmd /c $(ProjectDir)UpdateLocalInstallation.cmd $(Outdir)</PostBuildEvent>
     144    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    145145  </PropertyGroup>
    146146</Project>
  • TabularUnified trunk/sources/PreBuildEvent.cmd

    r30 r564  
    1 SubWCRev ..\..\ ..\..\Properties\AssemblyInfo.frame ..\..\Properties\AssemblyInfo.cs
     1SubWCRev %1 %1\Properties\AssemblyInfo.frame %1\Properties\AssemblyInfo.cs
Note: See TracChangeset for help on using the changeset viewer.