Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RegressionBenchmarks/MergeConfigs.cmd @ 7085

Last change on this file since 7085 was 7085, checked in by sforsten, 12 years ago

#1669: branch has been merged with the trunk in revision 7081 and methods in RegressionBenchmark have been renamed.

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