Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8772


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

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

Location:
trunk/sources
Files:
2 edited

Legend:

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

    r8759 r8772  
    179179  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    180180  <PropertyGroup>
    181     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     181    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    182182set ProjectDir=$(ProjectDir)
    183183set SolutionDir=$(SolutionDir)
     
    185185
    186186call PreBuildEvent.cmd
     187</PreBuildEvent>
     188<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     189export ProjectDir=$(ProjectDir)
     190export SolutionDir=$(SolutionDir)
     191
     192$SolutionDir/PreBuildEvent.sh
    187193</PreBuildEvent>
    188194  </PropertyGroup>
  • 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.