Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 15731 was 15660, checked in by swagner, 7 years ago

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

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