aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocess/PreprocessorOperation.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-12-02 00:46:11 -0800
committerRob Mensching <rob@firegiant.com>2017-12-02 00:46:11 -0800
commit95f2f4425b900374c7d7b583ae810b096121b3c4 (patch)
tree0ede0972e849bdc2c57e9535e31fbdd0df113f8d /src/WixToolset.Core/Preprocess/PreprocessorOperation.cs
parent720c4a0db1a2fb2aa3e08e5c99d5198873e448ba (diff)
downloadwix-95f2f4425b900374c7d7b583ae810b096121b3c4.tar.gz
wix-95f2f4425b900374c7d7b583ae810b096121b3c4.tar.bz2
wix-95f2f4425b900374c7d7b583ae810b096121b3c4.zip
Implement support for IExtensionCommandLine and IPreprocessorExtension
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}