- Timestamp:
- 08/09/12 10:56:46 (12 years ago)
- Location:
- branches/HeuristicLab.Mono
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Mono/HeuristicLab.Algorithms.GradientDescent/3.3/HeuristicLab.Algorithms.GradientDescent.csproj
r8448 r8456 193 193 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 194 194 <PropertyGroup> 195 <PreBuildEvent >set Path=%25Path%25;$(ProjectDir);$(SolutionDir)195 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 196 196 set ProjectDir=$(ProjectDir) 197 197 set SolutionDir=$(SolutionDir) -
branches/HeuristicLab.Mono/HeuristicLab.ExtLibs/HeuristicLab.ALGLIB/3.6.0/HeuristicLab.ALGLIB-3.6.0/HeuristicLab.ALGLIB-3.6.0.csproj
r8418 r8456 134 134 --> 135 135 <PropertyGroup> 136 <PreBuildEvent >set Path=%25Path%25;$(ProjectDir);$(SolutionDir)136 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 137 137 set ProjectDir=$(ProjectDir) 138 138 set SolutionDir=$(SolutionDir) … … 141 141 call PreBuildEvent.cmd 142 142 </PreBuildEvent> 143 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 144 export ProjectDir=$(ProjectDir) 145 export SolutionDir=$(SolutionDir) 146 $SolutionDir/PreBuildEvent.sh 147 </PreBuildEvent> 143 148 </PropertyGroup> 144 149 </Project> -
branches/HeuristicLab.Mono/HeuristicLab/3.3/HeuristicLab-3.3.csproj
r8450 r8456 634 634 call "$(SolutionDir)MergeConfigs.cmd" 635 635 if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent> 636 <PostBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 637 export Outdir=$(Outdir) 638 export ProjectDir=$(ProjectDir) 639 export SolutionDir=$(SolutionDir) 640 641 $SolutionDir/MergeConfigs.sh 642 </PostBuildEvent> 636 643 </PropertyGroup> 637 644 </Project> -
branches/HeuristicLab.Mono/PreBuildEvent.sh
r8440 r8456 4 4 if [ -f $AIFile ]; 5 5 then 6 svnwcrev $ProjectDir $AIFile $ProjectDir/Properties/AssemblyInfo.cs6 $SolutionDir/svnwcrev $ProjectDir $AIFile $ProjectDir/Properties/AssemblyInfo.cs 7 7 fi 8 8 9 9 if [ -f $PluginFile ]; 10 10 then 11 svnwcrev $ProjectDir $PluginFile $ProjectDir/Plugin.cs11 $SolutionDir/svnwcrev $ProjectDir $PluginFile $ProjectDir/Plugin.cs 12 12 fi
Note: See TracChangeset
for help on using the changeset viewer.