forked from mikefourie-zz/MSBuildExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Helper.cs
36 lines (32 loc) · 971 Bytes
/
Helper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//---------------------------------------------------------------------------------------------------------------------------
// <copyright file="Helper.cs">(c) Mike Fourie. All other rights reserved.</copyright>
//---------------------------------------------------------------------------------------------------------------------------
namespace MSBuildExplorer
{
using System;
/// <summary>
/// Class with various utility functions
/// </summary>
public static class Helper
{
internal enum MessageType
{
/// <summary>
/// Info
/// </summary>
Info = 0,
/// <summary>
/// Warning
/// </summary>
Warning = 1,
/// <summary>
/// Error
/// </summary>
Error = 2,
/// <summary>
/// Success
/// </summary>
Success = 3,
}
}
}