Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2877_HiveImprovements/MergeConfigs.sh @ 16356

Last change on this file since 16356 was 15660, checked in by swagner, 6 years ago

#2877: Generalized MergeConfigs scripts, cleaned app.config files, corrected post-build events

  • Property svn:executable set to *
File size: 274 bytes
Line 
1if [ "${TargetDir}" == "" ]; then
2  TargetDir=bin
3fi
4
5echo Recreating $TargetPath.config...
6cp "$ProjectDir/app.config" "$TargetPath.config"
7
8echo Merging...
9for f in $(ls "$TargetDir/*.dll.config"); do
10    mono "$SolutionDir/ConfigMerger.exe" "$f" "$TargetPath.config"
11done
Note: See TracBrowser for help on using the repository browser.