main
cs 42 lines 1.12 KB
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Extensibility
4 {
5 using System;
6
7 /// <summary>
8 /// Constants used by compiler.
9 /// </summary>
10 public static class CompilerConstants
11 {
12 /// <summary>
13 ///
14 /// </summary>
15 public const int IntegerNotSet = int.MinValue;
16
17 /// <summary>
18 ///
19 /// </summary>
20 public const int IllegalInteger = int.MinValue + 1;
21
22 /// <summary>
23 ///
24 /// </summary>
25 public const long LongNotSet = long.MinValue;
26
27 /// <summary>
28 ///
29 /// </summary>
30 public const long IllegalLong = long.MinValue + 1;
31
32 /// <summary>
33 ///
34 /// </summary>
35 public const string IllegalGuid = "IllegalGuid";
36
37 /// <summary>
38 ///
39 /// </summary>
40 public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue);
41 }
42 }