Free cookie consent management tool by TermsFeed Policy Generator

source: stable/MergeConfigs.cmd @ 17155

Last change on this file since 17155 was 15593, checked in by swagner, 6 years ago

#2640: Merged r15397 and r15398 into stable

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