aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocess/PreprocessorOperation.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Preprocess/PreprocessorOperation.cs')
-rw-r--r--src/WixToolset.Core/Preprocess/PreprocessorOperation.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Preprocess/PreprocessorOperation.cs b/src/WixToolset.Core/Preprocess/PreprocessorOperation.cs
new file mode 100644
index 00000000..086a0f1a
--- /dev/null
+++ b/src/WixToolset.Core/Preprocess/PreprocessorOperation.cs
@@ -0,0 +1,19 @@
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
3namespace 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}