aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/CompilerConstants.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-08-20 14:22:07 -0700
committerRob Mensching <rob@firegiant.com>2017-08-20 14:25:49 -0700
commit3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c (patch)
treebbe907a4c5ebf7aa5e3f02141f6e3abd31cb7b5c /src/WixToolset.Extensibility/CompilerConstants.cs
parent6dee3b45cb679786bd49a5db8fde9006d283b3e2 (diff)
downloadwix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.gz
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.bz2
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.zip
Move to .NET Core 2.0
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}