Click here to Skip to main content
15,895,667 members
Articles / Web Development / HTML

Transformalizing NorthWind

Rate me:
Please Sign up or sign in to vote.
4.95/5 (29 votes)
24 Jul 2014GPL37 min read 57.8K   341   53  
Combining de-normalization, transformation, replication, and awesome-ness.
#region License
// /*
// See license included in this library folder.
// */
#endregion
#if !NET_CF && !SILVERLIGHT

namespace Transformalize.Libs.NLog.Targets
{
    /// <summary>
    ///     Colored console output color.
    /// </summary>
    /// <remarks>
    ///     Note that this enumeration is defined to be binary compatible with
    ///     .NET 2.0 System.ConsoleColor + some additions
    /// </remarks>
    public enum ConsoleOutputColor
    {
        /// <summary>
        ///     Black Color (#000000).
        /// </summary>
        Black = 0,

        /// <summary>
        ///     Dark blue Color (#000080).
        /// </summary>
        DarkBlue = 1,

        /// <summary>
        ///     Dark green Color (#008000).
        /// </summary>
        DarkGreen = 2,

        /// <summary>
        ///     Dark Cyan Color (#008080).
        /// </summary>
        DarkCyan = 3,

        /// <summary>
        ///     Dark Red Color (#800000).
        /// </summary>
        DarkRed = 4,

        /// <summary>
        ///     Dark Magenta Color (#800080).
        /// </summary>
        DarkMagenta = 5,

        /// <summary>
        ///     Dark Yellow Color (#808000).
        /// </summary>
        DarkYellow = 6,

        /// <summary>
        ///     Gray Color (#C0C0C0).
        /// </summary>
        Gray = 7,

        /// <summary>
        ///     Dark Gray Color (#808080).
        /// </summary>
        DarkGray = 8,

        /// <summary>
        ///     Blue Color (#0000FF).
        /// </summary>
        Blue = 9,

        /// <summary>
        ///     Green Color (#00FF00).
        /// </summary>
        Green = 10,

        /// <summary>
        ///     Cyan Color (#00FFFF).
        /// </summary>
        Cyan = 11,

        /// <summary>
        ///     Red Color (#FF0000).
        /// </summary>
        Red = 12,

        /// <summary>
        ///     Magenta Color (#FF00FF).
        /// </summary>
        Magenta = 13,

        /// <summary>
        ///     Yellow Color (#FFFF00).
        /// </summary>
        Yellow = 14,

        /// <summary>
        ///     White Color (#FFFFFF).
        /// </summary>
        White = 15,

        /// <summary>
        ///     Don't change the color.
        /// </summary>
        NoChange = 16,
    }
}

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions