Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ContextAlgorithms/PreBuildEvent.sh @ 15624

Last change on this file since 15624 was 15624, checked in by abeham, 6 years ago

#2645: created branch

  • Property svn:executable set to *
File size: 594 bytes
Line 
1export AIFile=$ProjectDir/Properties/AssemblyInfo.cs.frame
2export PluginFile=$ProjectDir/Plugin.cs.frame
3
4command_exists () {
5    command -v "$1"
6}
7
8if command_exists svnwcrev ; then   
9  if [ -f $AIFile ];
10  then
11    svnwcrev $ProjectDir $AIFile $ProjectDir/Properties/AssemblyInfo.cs
12  fi
13
14  if [ -f $PluginFile ];
15  then
16    svnwcrev $ProjectDir $PluginFile $ProjectDir/Plugin.cs
17  fi
18else
19  if [ -f $AIFile ];
20  then
21    sed 's/\$WCREV\$/'0'/g' $AIFile > $ProjectDir/Properties/AssemblyInfo.cs
22  fi
23
24  if [ -f $PluginFile ];
25  then
26   sed 's/\$WCREV\$/'0'/g' $PluginFile > $ProjectDir/Plugin.cs
27  fi
28fi
29
Note: See TracBrowser for help on using the repository browser.