Free cookie consent management tool by TermsFeed Policy Generator

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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>
Note: See TracChangeset for help on using the changeset viewer.