Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/09/12 16:55:36 (12 years ago)
Author:
ascheibe
Message:

#1329 another fix for the prebuild events for Mono (missed the Encoding)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.ScheduleEncoding/3.3/HeuristicLab.Encodings.ScheduleEncoding-3.3.csproj

    r8759 r8772  
    213213  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    214214  <PropertyGroup>
    215     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     215    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    216216set ProjectDir=$(ProjectDir)
    217217set SolutionDir=$(SolutionDir)
     
    219219
    220220call PreBuildEvent.cmd
     221</PreBuildEvent>
     222<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     223export ProjectDir=$(ProjectDir)
     224export SolutionDir=$(SolutionDir)
     225
     226$SolutionDir/PreBuildEvent.sh
    221227</PreBuildEvent>
    222228  </PropertyGroup>
Note: See TracChangeset for help on using the changeset viewer.