Free cookie consent management tool by TermsFeed Policy Generator

source: stable/MergeConfigs.cmd @ 14304

Last change on this file since 14304 was 14211, checked in by swagner, 8 years ago

#2526: Merged r14203, r14204, r14206, r14207, r14209 into stable

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