Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BE146970A for ; Fri, 4 Nov 2011 05:39:28 +0000 (UTC) Received: (qmail 3965 invoked by uid 500); 4 Nov 2011 05:39:28 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 3932 invoked by uid 500); 4 Nov 2011 05:39:27 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 3925 invoked by uid 99); 4 Nov 2011 05:39:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Nov 2011 05:39:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Nov 2011 05:39:25 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C3569238890B; Fri, 4 Nov 2011 05:39:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1197406 - /logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs Date: Fri, 04 Nov 2011 05:39:04 -0000 To: commits@logging.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111104053904.C3569238890B@eris.apache.org> Author: bodewig Date: Fri Nov 4 05:39:04 2011 New Revision: 1197406 URL: http://svn.apache.org/viewvc?rev=1197406&view=rev Log: ConsoleColor is not in Mono 1.x Modified: logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs Modified: logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs?rev=1197406&r1=1197405&r2=1197406&view=diff ============================================================================== --- logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs (original) +++ logging/log4net/trunk/src/Appender/ManagedColoredConsoleAppender.cs Fri Nov 4 05:39:04 2011 @@ -23,6 +23,7 @@ #if !NETCF #if !SSCLI #if !CLI_1_0 +#if !MONO_1_0 // The original ColoredConsoleAppender was written before the .NET framework // (and Mono) had built-in support for console colors so it was written using @@ -337,6 +338,7 @@ namespace log4net.Appender } } +#endif // !MONO_1_0 #endif // !CLI_1_0 #endif // !SSCLI #endif // !NETCF