Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/prepareProjectsForMono.sh @ 12470

Last change on this file since 12470 was 12465, checked in by ascheibe, 9 years ago

#2399 worked on mono project prepare script

File size: 1.4 KB
Line 
1# add hint path for DataVisualization assembly
2ORIG="<Reference Include=\"System.Windows.Forms.DataVisualization\" \/>"
3REP="<Reference Include=\"System.Windows.Forms.DataVisualization\" > \n <HintPath>..\/..\/bin\/System.Windows.Forms.DataVisualization.dll<\/HintPath> \n <\/Reference>"
4
5for filename in $(find . -name '*.csproj')
6do   
7    sed "s/$ORIG/$REP/g" $filename > tmp
8    mv tmp $filename
9done;
10
11
12# remove projects that do not build
13unamestr=`uname`
14if [[ "$unamestr" == 'Darwin' ]]; then
15   awk '/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1/ {while (/ICSharpCode.AvalonEdit-5.0.1|HeuristicLab.AvalonEdit-5.0.1/ && getline>0) ; next} 1' HeuristicLab.ExtLibs.sln > tmp
16   mv tmp HeuristicLab.ExtLibs.sln
17elif [[ "$unamestr" == 'Linux' ]]; then
18   sed -e '/ICSharpCode.AvalonEdit-5.0.1/,+1d' -e '/HeuristicLab.AvalonEdit-5.0.1/,+1d' HeuristicLab.ExtLibs.sln > tmp
19   mv tmp HeuristicLab.ExtLibs.sln
20else
21   echo "Unsupported operating system, compiling HeuristicLab may not work!"
22fi
23
24
25# switch to MultiDocument MainForm type as Docking doesn't properly work on Linux
26sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.settings > tmp
27mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.settings
28
29sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs > tmp
30mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs
Note: See TracBrowser for help on using the repository browser.