Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/MergeConfigs.cmd @ 15630

Last change on this file since 15630 was 14207, checked in by swagner, 8 years ago

#2526: Corrected post build events and config merging

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.