aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/MessageLevel.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-08-11 00:39:04 -0700
committerRob Mensching <rob@firegiant.com>2017-08-15 01:51:22 -0700
commit4ebc33174c02e1c9f5693b5ef38ecfe3292c687f (patch)
tree5800ee5feb0cb30d71c706d36ce2ef857e9b87c3 /src/WixToolset.Data/MessageLevel.cs
parentb558e6bb06aa27f57670736bfd3e22cc34ab0669 (diff)
downloadwix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.gz
wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.bz2
wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.zip
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Data/MessageLevel.cs')
-rw-r--r--src/WixToolset.Data/MessageLevel.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/WixToolset.Data/MessageLevel.cs b/src/WixToolset.Data/MessageLevel.cs
new file mode 100644
index 00000000..d980e371
--- /dev/null
+++ b/src/WixToolset.Data/MessageLevel.cs
@@ -0,0 +1,25 @@
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
3namespace 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}