Last change
on this file since 13818 was
13428,
checked in by abeham, 9 years ago
|
#2539: fixed MergeConfigs.cmd and .sh files, removed obsolete files
|
File size:
431 bytes
|
Rev | Line | |
---|
[7060] | 1 | @echo off
|
---|
| 2 |
|
---|
[13428] | 3 | IF "%TargetDir%"=="" (
|
---|
| 4 | SET TargetDir=.\bin\
|
---|
[7060] | 5 | SET INTERACTIVE=1
|
---|
| 6 | )
|
---|
| 7 |
|
---|
| 8 | echo Recreating HeuristicLab 3.3.exe.config...
|
---|
[13428] | 9 | copy /Y "%TargetDir%app.config" "%TargetDir%HeuristicLab 3.3.exe.config"
|
---|
[7060] | 10 |
|
---|
| 11 | echo Merging...
|
---|
[13428] | 12 | FOR /F "tokens=*" %%A IN ('dir /B "%TargetDir%*.dll.config"') DO (
|
---|
| 13 | "%SolutionDir%ConfigMerger.exe" "%TargetDir%%%A" "%TargetDir%HeuristicLab 3.3.exe.config"
|
---|
[7060] | 14 | )
|
---|
| 15 |
|
---|
| 16 | IF "%INTERACTIVE%"=="1" (
|
---|
| 17 | pause
|
---|
| 18 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.