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.Views
Files:
2 edited

Legend:

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

    r6866 r8600  
    260260  -->
    261261  <PropertyGroup>
    262     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     262   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    263263set ProjectDir=$(ProjectDir)
    264264set SolutionDir=$(SolutionDir)
     
    267267call PreBuildEvent.cmd
    268268</PreBuildEvent>
     269<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     270export ProjectDir=$(ProjectDir)
     271export SolutionDir=$(SolutionDir)
     272
     273$SolutionDir/PreBuildEvent.sh
     274</PreBuildEvent>
    269275  </PropertyGroup>
    270276</Project>
  • trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.4/HeuristicLab.Problems.VehicleRouting.Views-3.4.csproj

    r8455 r8600  
    299299  -->
    300300  <PropertyGroup>
    301     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     301   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    302302set ProjectDir=$(ProjectDir)
    303303set SolutionDir=$(SolutionDir)
     
    305305
    306306call PreBuildEvent.cmd</PreBuildEvent>
     307<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     308export ProjectDir=$(ProjectDir)
     309export SolutionDir=$(SolutionDir)
     310
     311$SolutionDir/PreBuildEvent.sh
     312</PreBuildEvent>
    307313  </PropertyGroup>
    308314  <PropertyGroup>
Note: See TracChangeset for help on using the changeset viewer.