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 | # remove projects that do not build |
---|
12 | 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 |
---|
13 | mv tmp HeuristicLab.ExtLibs.sln |
---|
14 | |
---|
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" |
---|
Note: See
TracBrowser
for help on using the repository browser.