Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/MergeConfigs.cmd @ 7259

Last change on this file since 7259 was 7215, checked in by spimming, 12 years ago

#1680:

  • merged changes from trunk into branch

' removed pre-build event for multiple app.configs

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.