diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:46:11 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:46:11 -0800 |
commit | 95f2f4425b900374c7d7b583ae810b096121b3c4 (patch) | |
tree | 0ede0972e849bdc2c57e9535e31fbdd0df113f8d /src/WixToolset.Core/Preprocess/PreprocessorOperation.cs | |
parent | 720c4a0db1a2fb2aa3e08e5c99d5198873e448ba (diff) | |
download | wix-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.cs | 19 |
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 | |||
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 | } | ||