Last change
on this file since 10206 was
8654,
checked in by ascheibe, 12 years ago
|
#1937 switch mainform type to Multiple Document as Docking doesn't work
on Linux at the moment
|
File size:
1.3 KB
|
Line | |
---|
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 | |
---|
5 | for filename in $(find -name '*.csproj') |
---|
6 | do |
---|
7 | sed "s/$ORIG/$REP/g" $filename > tmp |
---|
8 | mv tmp $filename |
---|
9 | done; |
---|
10 | |
---|
11 | |
---|
12 | # remove projects that do not build |
---|
13 | sed -e '/ProtocolBuffers-2.4.1.473/,+1d' -e '/ProtoGen-2.4.1.473/,+1d' -e '/HeuristicLab.ProtobufCS-2.4.1.473/,+1d' HeuristicLab.ExtLibs.sln > tmp |
---|
14 | mv tmp HeuristicLab.ExtLibs.sln |
---|
15 | |
---|
16 | sed -e '/HeuristicLab.Problems.ExternalEvaluation-3.3/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.GP-3.4/,+1d' -e '/HeuristicLab.Problems.ExternalEvaluation.Views-3.3/,+1d' "HeuristicLab 3.3.sln" > tmp |
---|
17 | mv tmp "HeuristicLab 3.3.sln" |
---|
18 | |
---|
19 | |
---|
20 | # switch to MultiDocument MainForm type as Docking doesn't properly work on Linux |
---|
21 | sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.settings > tmp |
---|
22 | mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.settings |
---|
23 | |
---|
24 | sed "s/DockingMainForm/MultipleDocumentMainForm/g" HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs > tmp |
---|
25 | mv tmp HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs |
---|
Note: See
TracBrowser
for help on using the repository browser.