ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/VersionSupport/SharedAssemblyInfo.vb.tmpl
Revision: 199
Committed: Mon Jul 16 17:02:21 2012 UTC (11 years, 2 months ago) by william
File size: 679 byte(s)
Log Message:

File Contents

# Content
1 Imports System.Reflection
2 Imports System.Runtime.InteropServices
3 <Assembly: AssemblyVersion(AssemblyConfig.AssemblyVersion)>
4 <Assembly: AssemblyFileVersion(AssemblyConfig.AssemblyFileVersion)>
5
6 Public Class AssemblyConfig
7 Private Const Major As String = "4"
8 Private Const Minor As String = $WCNOW=%#y$ << 9 Or $WCNOW=%#m$ << 5 Or $WCNOW=%#d$
9 Private Const Build As String = "$WCNOW=%H%M$"
10 Private Const Revision As String = "$WCREV$"
11 Public Const AssemblyVersion As String = Major + "." + Minor + "." + Build + "." + Revision
12 Public Const AssemblyFileVersion As String = Major + "." + Minor + "." + Build + "." + Revision
13 End Class
14
15
16