1 |
william |
35 |
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 = "1"; |
11 |
|
|
private const string MINOR = "0"; |
12 |
|
|
private const string BUILD = "0"; |
13 |
|
|
private const string REVISION = "0"; |
14 |
|
|
private const string VERSION = MAJOR + "." + MINOR + "." + BUILD + "." + REVISION; |
15 |
|
|
#if DEBUG |
16 |
|
|
private const string TAG = "debug"; |
17 |
|
|
#else |
18 |
|
|
private const string TAG = "release"; |
19 |
|
|
#endif |
20 |
|
|
public const string AssemblyVersion = VERSION; |
21 |
|
|
public const string AssemblyFileVersion = VERSION + "-" + TAG; |
22 |
|
|
} |
23 |
|
|
} |