ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.VersionSupport/Version.cs.tmpl
Revision: 45
Committed: Wed May 9 12:45:13 2012 UTC (11 years, 1 month ago) by william
File size: 701 byte(s)
Log Message:

File Contents

# Content
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 }