1 |
william |
199 |
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 |
|
|
|