Free cookie consent management tool by TermsFeed Policy Generator

source: branches/crossvalidation-2434/MergeConfigs.cmd @ 15528

Last change on this file since 15528 was 14029, checked in by gkronber, 8 years ago

#2434: merged trunk changes r12934:14026 from trunk to branch

File size: 431 bytes
RevLine 
[7060]1@echo off
2
[14029]3IF "%TargetDir%"=="" (
4  SET TargetDir=.\bin\
[7060]5  SET INTERACTIVE=1
6)
7
8echo Recreating HeuristicLab 3.3.exe.config...
[14029]9copy /Y "%TargetDir%app.config" "%TargetDir%HeuristicLab 3.3.exe.config"
[7060]10
11echo Merging...
[14029]12FOR /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
16IF "%INTERACTIVE%"=="1" (
17  pause
18)
Note: See TracBrowser for help on using the repository browser.