Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/15 17:09:22 (9 years ago)
Author:
ascheibe
Message:

#2290 merged r11723, r11724, r11829, r11830, r11831, r11833, r11992 into stable

Location:
stable
Files:
1 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.ExtLibs

  • stable/HeuristicLab.ExtLibs/HeuristicLab.AvalonEdit/5.0.1/HeuristicLab.AvalonEdit-5.0.1/HeuristicLab.AvalonEdit-5.0.1.csproj

    r11700 r12007  
    111111  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    112112  <PropertyGroup>
    113     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    114 set ProjectDir=$(ProjectDir)
    115 set SolutionDir=$(SolutionDir)
    116 set Outdir=$(Outdir)
     113    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     114      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     115      set ProjectDir=$(ProjectDir)
     116      set SolutionDir=$(SolutionDir)
     117      set Outdir=$(Outdir)
    117118
    118 call PreBuildEvent.cmd
    119 </PreBuildEvent>
     119      call PreBuildEvent.cmd
     120    </PreBuildEvent>
     121    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     122      export ProjectDir=$(ProjectDir)
     123      export SolutionDir=$(SolutionDir)
     124
     125      $SolutionDir/PreBuildEvent.sh
     126    </PreBuildEvent>
    120127  </PropertyGroup>
    121   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    122        Other similar extension points exist, see Microsoft.Common.targets.
    123   <Target Name="BeforeBuild">
    124   </Target>
    125   <Target Name="AfterBuild">
    126   </Target>
    127   -->
    128128</Project>
  • stable/HeuristicLab.ExtLibs/HeuristicLab.Cecil/0.9.5/HeuristicLab.Cecil-0.9.5/HeuristicLab.Cecil-0.9.5.csproj

    r11700 r12007  
    111111  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    112112  <PropertyGroup>
    113     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     113    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    114114set ProjectDir=$(ProjectDir)
    115115set SolutionDir=$(SolutionDir)
     
    118118call PreBuildEvent.cmd
    119119</PreBuildEvent>
     120    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     121export ProjectDir=$(ProjectDir)
     122export SolutionDir=$(SolutionDir)
     123
     124$SolutionDir/PreBuildEvent.sh
     125</PreBuildEvent>
    120126  </PropertyGroup>
    121   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    122        Other similar extension points exist, see Microsoft.Common.targets.
    123   <Target Name="BeforeBuild">
    124   </Target>
    125   <Target Name="AfterBuild">
    126   </Target>
    127   -->
    128127</Project>
  • stable/HeuristicLab.ExtLibs/HeuristicLab.NRefactory/5.5.0/HeuristicLab.NRefactory-5.5.0/HeuristicLab.NRefactory-5.5.0.csproj

    r11810 r12007  
    123123  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    124124  <PropertyGroup>
    125     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    126 set ProjectDir=$(ProjectDir)
    127 set SolutionDir=$(SolutionDir)
    128 set Outdir=$(Outdir)
     125    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     126      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     127      set ProjectDir=$(ProjectDir)
     128      set SolutionDir=$(SolutionDir)
     129      set Outdir=$(Outdir)
    129130
    130 call PreBuildEvent.cmd
    131 </PreBuildEvent>
     131      call PreBuildEvent.cmd
     132    </PreBuildEvent>
     133    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     134      export ProjectDir=$(ProjectDir)
     135      export SolutionDir=$(SolutionDir)
     136
     137      $SolutionDir/PreBuildEvent.sh
     138    </PreBuildEvent>
    132139  </PropertyGroup>
    133   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    134        Other similar extension points exist, see Microsoft.Common.targets.
    135   <Target Name="BeforeBuild">
    136   </Target>
    137   <Target Name="AfterBuild">
    138   </Target>
    139   -->
    140140</Project>
  • stable/HeuristicLab.ExtLibs/HeuristicLab.ProtobufCS/2.4.1/ProtobufCS/src/ProtoGen/ProtoGen-2.4.1.473.csproj

    r11920 r12007  
    189189  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    190190  <PropertyGroup>
    191     <PostBuildEvent>copy "$(TargetPath)" "$(SolutionDir)"
    192 copy "$(TargetDir)Google.ProtocolBuffers-2.4.1.473.dll" "$(SolutionDir)"
    193 copy "$(ProjectDir)..\..\lib\protoc.exe" "$(SolutionDir)"</PostBuildEvent>
    194   </PropertyGroup>
     191    <PostBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     192    copy "$(TargetPath)" "$(SolutionDir)"
     193    copy "$(TargetDir)Google.ProtocolBuffers-2.4.1.473.dll" "$(SolutionDir)"
     194    copy "$(ProjectDir)..\..\lib\protoc.exe" "$(SolutionDir)"
     195  </PostBuildEvent>
     196    <PostBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     197    cp "$(TargetPath)" "$(SolutionDir)"
     198    cp "$(TargetDir)Google.ProtocolBuffers-2.4.1.473.dll" "$(SolutionDir)"
     199    cp "$(ProjectDir)..\..\lib\protoc.exe" "$(SolutionDir)"
     200  </PostBuildEvent>
     201  </PropertyGroup> 
    195202  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    196203       Other similar extension points exist, see Microsoft.Common.targets.
Note: See TracChangeset for help on using the changeset viewer.