Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/MergeConfigs.cmd @ 17184

Last change on this file since 17184 was 16430, checked in by pfleck, 5 years ago

#2845 merged branch into trunk
Reviewed by mkommenda

File size: 473 bytes
Line 
1@echo off
2
3IF "%TargetDir%"=="" (
4  SET TargetDir=.\bin\
5  SET INTERACTIVE=1
6  SET SolutionDir=.\
7)
8
9echo Recreating HeuristicLab 3.3.exe.config...
10copy /Y "%SolutionDir%\HeuristicLab\3.3\app.config" "%TargetDir%HeuristicLab 3.3.exe.config"
11
12echo Merging...
13FOR /F "tokens=*" %%A IN ('dir /B "%TargetDir%*.dll.config"') DO (
14  "%SolutionDir%ConfigMerger.exe" "%TargetDir%%%A" "%TargetDir%HeuristicLab 3.3.exe.config"
15)
16
17IF "%INTERACTIVE%"=="1" (
18  pause
19)
Note: See TracBrowser for help on using the repository browser.