// 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.
namespace WixToolset.Extensibility
{
using System;
///
/// Constants used by compiler.
///
public static class CompilerConstants
{
///
///
///
public const int IntegerNotSet = int.MinValue;
///
///
///
public const int IllegalInteger = int.MinValue + 1;
///
///
///
public const long LongNotSet = long.MinValue;
///
///
///
public const long IllegalLong = long.MinValue + 1;
///
///
///
public const string IllegalGuid = "IllegalGuid";
///
///
///
public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue);
}
}