diff options
Diffstat (limited to 'src/wixext/Symbols/HandleExisting.cs')
| -rw-r--r-- | src/wixext/Symbols/HandleExisting.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wixext/Symbols/HandleExisting.cs b/src/wixext/Symbols/HandleExisting.cs new file mode 100644 index 00000000..0d70cebc --- /dev/null +++ b/src/wixext/Symbols/HandleExisting.cs | |||
| @@ -0,0 +1,14 @@ | |||
| 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.Http.Symbols | ||
| 4 | { | ||
| 5 | /// <summary> | ||
| 6 | /// Must match constants in wixhttpca.cpp | ||
| 7 | /// </summary> | ||
| 8 | public enum HandleExisting | ||
| 9 | { | ||
| 10 | Replace = 0, | ||
| 11 | Ignore = 1, | ||
| 12 | Fail = 2, | ||
| 13 | } | ||
| 14 | } | ||
