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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/HeuristicLab.Operators.Programmable-3.3.csproj

    r7636 r8600  
    192192  -->
    193193  <PropertyGroup>
    194     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     194   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    195195set ProjectDir=$(ProjectDir)
    196196set SolutionDir=$(SolutionDir)
     
    199199call PreBuildEvent.cmd
    200200</PreBuildEvent>
     201<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     202export ProjectDir=$(ProjectDir)
     203export SolutionDir=$(SolutionDir)
     204
     205$SolutionDir/PreBuildEvent.sh
     206</PreBuildEvent>
    201207  </PropertyGroup>
    202208</Project>
Note: See TracChangeset for help on using the changeset viewer.