| 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 | |
| 3 | namespace WixToolset.Core.Preprocess |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Enumeration for preprocessor operations in if statements. |
| 7 | /// </summary> |
| 8 | internal enum PreprocessorOperation |
| 9 | { |
| 10 | /// <summary>The and operator.</summary> |
| 11 | And, |
| 12 | |
| 13 | /// <summary>The or operator.</summary> |
| 14 | Or, |
| 15 | |
| 16 | /// <summary>The not operator.</summary> |
| 17 | Not |
| 18 | } |
| 19 | } |