diff options
Diffstat (limited to 'src/samples/burn/ManagedBundleRunner/BundleResult.cs')
| -rw-r--r-- | src/samples/burn/ManagedBundleRunner/BundleResult.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/samples/burn/ManagedBundleRunner/BundleResult.cs b/src/samples/burn/ManagedBundleRunner/BundleResult.cs new file mode 100644 index 00000000..c32644f4 --- /dev/null +++ b/src/samples/burn/ManagedBundleRunner/BundleResult.cs | |||
| @@ -0,0 +1,24 @@ | |||
| 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 Wix.Samples | ||
| 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 | } | ||
