Last change
on this file since 16687 was
16433,
checked in by pfleck, 6 years ago
|
#2965 Merged recent trunk changes.
Enabled the prepared hooks that allows to cancel the save file using the recently introduced cancelable progressbars (in FileManager).
|
File size:
473 bytes
|
Line | |
---|
1 | @echo off
|
---|
2 |
|
---|
3 | IF "%TargetDir%"=="" (
|
---|
4 | SET TargetDir=.\bin\
|
---|
5 | SET INTERACTIVE=1
|
---|
6 | SET SolutionDir=.\
|
---|
7 | )
|
---|
8 |
|
---|
9 | echo Recreating HeuristicLab 3.3.exe.config...
|
---|
10 | copy /Y "%SolutionDir%\HeuristicLab\3.3\app.config" "%TargetDir%HeuristicLab 3.3.exe.config"
|
---|
11 |
|
---|
12 | echo Merging...
|
---|
13 | FOR /F "tokens=*" %%A IN ('dir /B "%TargetDir%*.dll.config"') DO (
|
---|
14 | "%SolutionDir%ConfigMerger.exe" "%TargetDir%%%A" "%TargetDir%HeuristicLab 3.3.exe.config"
|
---|
15 | )
|
---|
16 |
|
---|
17 | IF "%INTERACTIVE%"=="1" (
|
---|
18 | pause
|
---|
19 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.