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