blob: e1766acc11a0b4aef8c315bd85739095a462486d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright © Microsoft Corporation.
// This source file is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
using System;
using System.IO;
using System.Reflection;
using System.Xml.XPath;
namespace Microsoft.Ddue.Tools.CommandLine {
public enum LogLevel {
Info, Warn, Error
}
}
|