blob: 6d4ca7427fed1110f796b820fcaad1deae7c0520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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
{
using System;
/// <summary>
/// Constants used by compiler.
/// </summary>
public 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);
}
}
|