// 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
}
}
|