| 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.Data |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Enum for message to display. |
| 7 | /// </summary> |
| 8 | public enum MessageLevel |
| 9 | { |
| 10 | /// <summary>Display nothing.</summary> |
| 11 | Nothing, |
| 12 | |
| 13 | /// <summary>Display verbose information.</summary> |
| 14 | Verbose, |
| 15 | |
| 16 | /// <summary>Display information.</summary> |
| 17 | Information, |
| 18 | |
| 19 | /// <summary>Display warning.</summary> |
| 20 | Warning, |
| 21 | |
| 22 | /// <summary>Display error.</summary> |
| 23 | Error, |
| 24 | } |
| 25 | } |