Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9897


Ignore:
Timestamp:
08/22/13 13:37:07 (11 years ago)
Author:
ascheibe
Message:

#1508 fixed Mono compatibility of project files

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Trading.Views/3.4/HeuristicLab.Problems.DataAnalysis.Trading.Views-3.4.csproj

    r9812 r9897  
    231231  -->
    232232  <PropertyGroup>
    233     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    234 set ProjectDir=$(ProjectDir)
    235 set SolutionDir=$(SolutionDir)
    236 set Outdir=$(Outdir)
     233    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     234      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     235      set ProjectDir=$(ProjectDir)
     236      set SolutionDir=$(SolutionDir)
     237      set Outdir=$(Outdir)
    237238
    238 call PreBuildEvent.cmd
    239 </PreBuildEvent>
     239      call PreBuildEvent.cmd
     240    </PreBuildEvent>
     241    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     242      export ProjectDir=$(ProjectDir)
     243      export SolutionDir=$(SolutionDir)
     244
     245      $SolutionDir/PreBuildEvent.sh
     246    </PreBuildEvent>
    240247  </PropertyGroup>
    241248</Project>
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Trading/3.4/HeuristicLab.Problems.DataAnalysis.Trading-3.4.csproj

    r9812 r9897  
    220220  -->
    221221  <PropertyGroup>
    222     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    223 set ProjectDir=$(ProjectDir)
    224 set SolutionDir=$(SolutionDir)
    225 set Outdir=$(Outdir)
     222  <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     223      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     224      set ProjectDir=$(ProjectDir)
     225      set SolutionDir=$(SolutionDir)
     226      set Outdir=$(Outdir)
    226227
    227 call PreBuildEvent.cmd
    228 </PreBuildEvent>
     228      call PreBuildEvent.cmd
     229    </PreBuildEvent>
     230    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     231      export ProjectDir=$(ProjectDir)
     232      export SolutionDir=$(SolutionDir)
     233
     234      $SolutionDir/PreBuildEvent.sh
     235    </PreBuildEvent>
    229236  </PropertyGroup>
    230237</Project>
Note: See TracChangeset for help on using the changeset viewer.