ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.VersionSupport/Version.cs
Revision: 41
Committed: Wed May 9 12:34:11 2012 UTC (11 years, 7 months ago) by william
File size: 712 byte(s)
Log Message:

File Contents

# User Rev Content
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 william 37 private const string BUILD = "*";
13 william 41 private const string REVISION = "$WCREV$";
14    
15     private const string VERSION = MAJOR + "." + MINOR + "." + "." + BUILD + "." + REVISION;
16 william 35 #if DEBUG
17     private const string TAG = "debug";
18     #else
19     private const string TAG = "release";
20     #endif
21     public const string AssemblyVersion = VERSION;
22 william 37 public const string AssemblyFileVersion = VERSION + "-" + TAG;
23 william 35 }
24     }