| 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.Tools |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Result codes. |
| 7 | /// </summary> |
| 8 | public enum BundleResult |
| 9 | { |
| 10 | Error = -1, |
| 11 | None, |
| 12 | Ok, |
| 13 | Cancel, |
| 14 | Abort, |
| 15 | Retry, |
| 16 | Ignore, |
| 17 | Yes, |
| 18 | No, |
| 19 | Close, |
| 20 | Help, |
| 21 | TryAgain, |
| 22 | Continue, |
| 23 | } |
| 24 | } |