forked from sbozzie/test-intel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductInfo.cs
More file actions
24 lines (19 loc) · 841 Bytes
/
Copy pathProductInfo.cs
File metadata and controls
24 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Stores common constants used in individual AssemblyInfo.cs
internal static class ProductInfo {
// Content for AssemblyCompanyAttribute
internal const string CompanyName = "Test Alliance Please Ignore";
// Content for AssemblyProductAttribute
internal const string ProductName = "Test Alliance Client Tools";
// Content for AssemblyCopyrightAttribute
internal const string CopyrightText = "Copyright © 2013";
// Prefix for AssemblyVersion*Attribute
internal const string ProductVersionPrefix = "0.5.";
// Content for AssemblyVersion*Attribute
internal const string ProductVersion = ProductVersionPrefix + "2.105";
// Content for AssemblyConfigurationAttribute
#if DEBUG
internal const string Configuration = "Debug";
#else
internal const string Configuration = "Release";
#endif
}