aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/CompilerConstants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/CompilerConstants.cs')
-rw-r--r--src/WixToolset.Extensibility/CompilerConstants.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/CompilerConstants.cs b/src/WixToolset.Extensibility/CompilerConstants.cs
new file mode 100644
index 00000000..6d4ca742
--- /dev/null
+++ b/src/WixToolset.Extensibility/CompilerConstants.cs
@@ -0,0 +1,19 @@
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
3namespace WixToolset
4{
5 using System;
6
7 /// <summary>
8 /// Constants used by compiler.
9 /// </summary>
10 public class CompilerConstants
11 {
12 public const int IntegerNotSet = int.MinValue;
13 public const int IllegalInteger = int.MinValue + 1;
14 public const long LongNotSet = long.MinValue;
15 public const long IllegalLong = long.MinValue + 1;
16 public const string IllegalGuid = "IllegalGuid";
17 public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue);
18 }
19}