diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-29 22:03:26 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-29 22:03:26 -0800 |
| commit | 71c52d5af2293d3eb79882ce36b0411f81185c11 (patch) | |
| tree | 23dd116bdd6abc2b0f7b488f490d1b77faa41812 /src/WixToolset.Core/Preprocess/IfState.cs | |
| parent | 0fa198ed8c6c6fc81e649466879752a99fe37d08 (diff) | |
| download | wix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.gz wix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.bz2 wix-71c52d5af2293d3eb79882ce36b0411f81185c11.zip | |
Fix source path and cabinet processing
Diffstat (limited to 'src/WixToolset.Core/Preprocess/IfState.cs')
| -rw-r--r-- | src/WixToolset.Core/Preprocess/IfState.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Preprocess/IfState.cs b/src/WixToolset.Core/Preprocess/IfState.cs new file mode 100644 index 00000000..f5bb3e87 --- /dev/null +++ b/src/WixToolset.Core/Preprocess/IfState.cs | |||
| @@ -0,0 +1,22 @@ | |||
| 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 | /// Current state of the if context. | ||
| 7 | /// </summary> | ||
| 8 | internal enum IfState | ||
| 9 | { | ||
| 10 | /// <summary>Context currently in unknown state.</summary> | ||
| 11 | Unknown, | ||
| 12 | |||
| 13 | /// <summary>Context currently inside if statement.</summary> | ||
| 14 | If, | ||
| 15 | |||
| 16 | /// <summary>Context currently inside elseif statement..</summary> | ||
| 17 | ElseIf, | ||
| 18 | |||
| 19 | /// <summary>Conext currently inside else statement.</summary> | ||
| 20 | Else, | ||
| 21 | } | ||
| 22 | } | ||
