1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace RomCheater.VersionSupport |
7 |
{ |
8 |
public static class Version |
9 |
{ |
10 |
private const string MAJOR = VersionConstants.MAJOR; |
11 |
private const string MINOR = VersionConstants.MINOR; |
12 |
private const string BUILD = VersionConstants.BUILD; |
13 |
private const string REVISION = "$WCREV$"; |
14 |
private const string TAG = VersionConstants.TAG; |
15 |
private const string VERSION = MAJOR + "." + MINOR + "." + BUILD + "." + REVISION; |
16 |
public const string AssemblyVersion = VERSION; |
17 |
public const string AssemblyFileVersion = VERSION + "-" + TAG; |
18 |
} |
19 |
} |