blob: 086a0f1aeaab15c89b77524a4971ab6b0534118d (
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.Core.Preprocess
{
/// <summary>
/// Enumeration for preprocessor operations in if statements.
/// </summary>
internal enum PreprocessorOperation
{
/// <summary>The and operator.</summary>
And,
/// <summary>The or operator.</summary>
Or,
/// <summary>The not operator.</summary>
Not
}
}
|