diff options
Diffstat (limited to 'src/WixToolset.Extensibility/CompilerConstants.cs')
-rw-r--r-- | src/WixToolset.Extensibility/CompilerConstants.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/CompilerConstants.cs b/src/WixToolset.Extensibility/CompilerConstants.cs index f26456fb..73ff685c 100644 --- a/src/WixToolset.Extensibility/CompilerConstants.cs +++ b/src/WixToolset.Extensibility/CompilerConstants.cs | |||
@@ -9,11 +9,34 @@ namespace WixToolset.Extensibility | |||
9 | /// </summary> | 9 | /// </summary> |
10 | public static class CompilerConstants | 10 | public static class CompilerConstants |
11 | { | 11 | { |
12 | /// <summary> | ||
13 | /// | ||
14 | /// </summary> | ||
12 | public const int IntegerNotSet = int.MinValue; | 15 | public const int IntegerNotSet = int.MinValue; |
16 | |||
17 | /// <summary> | ||
18 | /// | ||
19 | /// </summary> | ||
13 | public const int IllegalInteger = int.MinValue + 1; | 20 | public const int IllegalInteger = int.MinValue + 1; |
21 | |||
22 | /// <summary> | ||
23 | /// | ||
24 | /// </summary> | ||
14 | public const long LongNotSet = long.MinValue; | 25 | public const long LongNotSet = long.MinValue; |
26 | |||
27 | /// <summary> | ||
28 | /// | ||
29 | /// </summary> | ||
15 | public const long IllegalLong = long.MinValue + 1; | 30 | public const long IllegalLong = long.MinValue + 1; |
31 | |||
32 | /// <summary> | ||
33 | /// | ||
34 | /// </summary> | ||
16 | public const string IllegalGuid = "IllegalGuid"; | 35 | public const string IllegalGuid = "IllegalGuid"; |
36 | |||
37 | /// <summary> | ||
38 | /// | ||
39 | /// </summary> | ||
17 | public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue); | 40 | public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue); |
18 | } | 41 | } |
19 | } | 42 | } |