[8633] | 1 | # add hint path for DataVisualization assembly |
---|
| 2 | ORIG="<Reference Include=\"System.Windows.Forms.DataVisualization\" \/>" |
---|
| 3 | REP="<Reference Include=\"System.Windows.Forms.DataVisualization\" > \n <HintPath>..\/..\/bin\/System.Windows.Forms.DataVisualization.dll<\/HintPath> \n <\/Reference>" |
---|
| 4 | |
---|
[9702] | 5 | for filename in $(find . -name '*.csproj') |
---|
[8633] | 6 | do |
---|
| 7 | sed "s/$ORIG/$REP/g" $filename > tmp |
---|
| 8 | mv tmp $filename |
---|
| 9 | done; |
---|
| 10 | |
---|
[8654] | 11 | |
---|
[8633] | 12 | # remove projects that do not build |
---|
[9702] | 13 | unamestr=`uname` |
---|
| 14 | if [[ "$unamestr" == 'Darwin' ]]; then |
---|
[12465] | 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 |
---|
[9702] | 16 | mv tmp HeuristicLab.ExtLibs.sln |
---|
[12472] | 17 | awk '/HeuristicLab.Problems.ExternalEvaluation-3.4|HeuristicLab.Problems.ExternalEvaluation.GP-3.5|HeuristicLab.Problems.ExternalEvaluation.Views-3.4|HeuristicLab.Problems.ExternalEvaluation.Matlab-3.3/ {while (/HeuristicLab.Problems.ExternalEvaluation-3.4|HeuristicLab.Problems.ExternalEvaluation.GP-3.5|HeuristicLab.Problems.ExternalEvaluation.Views-3.4|HeuristicLab.Problems.ExternalEvaluation.Matlab-3.3/ && getline>0) ; next} 1' "HeuristicLab 3.3.sln" > tmp |
---|
[12471] | 18 | mv tmp "HeuristicLab 3.3.sln" |
---|
[9702] | 19 | elif [[ "$unamestr" == 'Linux' ]]; then |
---|
[12465] | 20 | sed -e '/ICSharpCode.AvalonEdit-5.0.1/,+1d' -e '/HeuristicLab.AvalonEdit-5.0.1/,+1d' HeuristicLab.ExtLibs.sln > tmp |
---|
[9702] | 21 | mv tmp HeuristicLab.ExtLibs.sln |
---|
[12472] | 22 | sed -e '/HeuristicLab.Problems.ExternalEvaluation-3.4/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.GP-3.5/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.Views-3.4/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.Matlab-3.3/,+1d' "HeuristicLab 3.3.sln" > tmp |
---|
[12471] | 23 | mv tmp "HeuristicLab 3.3.sln" |
---|
[9702] | 24 | else |
---|
| 25 | echo "Unsupported operating system, compiling HeuristicLab may not work!" |
---|
| 26 | fi |
---|
| 27 | |
---|
[12474] | 28 | #remove code from HeuristicLab.CodeEditor that depends on WPF and therefore does not work with Mono |
---|
| 29 | sed -e '/ITextMarker.cs/d' -e '/MethodDefinitionReadOnlySectionProvider.cs/d' -e '/GoToLineDialog/,+2d' -e '/TextMarkerService.cs/d' -e '/Compile Include\=\"LanguageFeatures/d' -e '/AvalonEditWrapper.xaml.cs/,+2d' -e '/AvalonEditWrapper.xaml/,+3d' -e '/CodeViewer/,+2d' -e '/\"CodeEditor.cs/,+2d' -e '/\"CodeEditor.Designer.cs/,+2d' HeuristicLab.CodeEditor/3.4/HeuristicLab.CodeEditor-3.4.csproj > tmp |
---|
| 30 | mv tmp HeuristicLab.CodeEditor/3.4/HeuristicLab.CodeEditor-3.4.csproj |
---|
[9702] | 31 | |
---|
[12474] | 32 | |
---|
[8654] | 33 | # switch to MultiDocument MainForm type as Docking doesn't properly work on Linux |
---|
| 34 | sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.settings > tmp |
---|
| 35 | mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.settings |
---|
| 36 | |
---|
| 37 | sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs > tmp |
---|
| 38 | mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs |
---|