Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/12 16:26:07 (12 years ago)
Author:
ascheibe
Message:

#1937 added pre- and postbuild events for mono

Location:
trunk/sources/HeuristicLab.Problems.VehicleRouting
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj

    r6866 r8600  
    330330  -->
    331331  <PropertyGroup>
    332     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     332   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    333333set ProjectDir=$(ProjectDir)
    334334set SolutionDir=$(SolutionDir)
     
    337337call PreBuildEvent.cmd
    338338</PreBuildEvent>
     339<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     340export ProjectDir=$(ProjectDir)
     341export SolutionDir=$(SolutionDir)
     342
     343$SolutionDir/PreBuildEvent.sh
     344</PreBuildEvent>
    339345  </PropertyGroup>
    340346</Project>
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/HeuristicLab.Problems.VehicleRouting-3.4.csproj

    r8455 r8600  
    472472  -->
    473473  <PropertyGroup>
    474     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     474   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    475475set ProjectDir=$(ProjectDir)
    476476set SolutionDir=$(SolutionDir)
     
    478478
    479479call PreBuildEvent.cmd</PreBuildEvent>
     480<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     481export ProjectDir=$(ProjectDir)
     482export SolutionDir=$(SolutionDir)
     483
     484$SolutionDir/PreBuildEvent.sh
     485</PreBuildEvent>
    480486  </PropertyGroup>
    481487  <PropertyGroup>
Note: See TracChangeset for help on using the changeset viewer.