aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/CompilerConstants.cs
blob: 73ff685c46de9c51f942da45dc009449c235a9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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;

    /// <summary>
    /// Constants used by compiler.
    /// </summary>
    public static class CompilerConstants
    {
        /// <summary>
        /// 
        /// </summary>
        public const int IntegerNotSet = int.MinValue;

        /// <summary>
        /// 
        /// </summary>
        public const int IllegalInteger = int.MinValue + 1;

        /// <summary>
        /// 
        /// </summary>
        public const long LongNotSet = long.MinValue;

        /// <summary>
        /// 
        /// </summary>
        public const long IllegalLong = long.MinValue + 1;

        /// <summary>
        /// 
        /// </summary>
        public const string IllegalGuid = "IllegalGuid";

        /// <summary>
        /// 
        /// </summary>
        public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue);
    }
}