使用命令行中的App.Config进行C#程序

时间:2010-10-25 03:35:50

标签: c# configuration log4net command-prompt

我正在学习log4net,目前正在测试如何使用App.Config进行XMLConfiguration。

问题是我在办公室没有.NET IDE,如Visual Studio 2008或Express Edition(不要让我开始为什么/如何: - ))

我需要编译并运行我的代码,其中log4net从App.Config读取配置设置。我该怎么做?

我的C#代码如下。

public class BasicXMLConfiguration
{
    public static void Main (string [] args)
    {
        log4net.Config.XmlConfigurator.Configure();
        log4net.ILog log = 
                     log4net.LogManager.GetLogger(typeof(BasicXMLConfiguration));
        log.Info("beginning of loop");
        for (int c = 0; c < 10; c++)
        {
            log.DebugFormat("Loop Count is {0}", c);
        }
        log.Info("looping ends");
    }
}

我的App.Config如下

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

    <configSections>
        <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
    </configSections>

    <log4net>

        <!--
        <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
            <layout type="log4net.Layout.SimpleLayout" />
        </appender>
        -->
        <!-- Never, ever use the FileAppender. Instead, use the RollingFileAppender -->
        <!--
        <appender name="FileAppender" type="log4net.Appender.FileAppender">
            <file value="C:\My_Code\Log4NetTutorials\Log_Files\log-file.txt" />
            <appendToFile value="true" />
            <encoding value="utf-8"/>
            <layout type="log4net.Layout.SimpleLayout" />
        </appender>
        -->
        <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
            <file value="C:\My_Code\Log4NetTutorials\Log_Files\log-file.txt" />
            <appendToFile value="true" />
            <rollingStyle value="Size" />
            <maxSizeRollBackups value="10" />
            <maximumFileSize value="10MB" />
            <staticLogFileName value="true" />
            <layout type="log4net.Layout.SimpleLayout" />
        </appender>
        <root>
            <level value="ALL" />
            <appender-ref ref="RollingFileAppender" />
        </root>

    </log4net>

</configuration>

我使用的命令就是这个

csc BasicXMLConfiguration.cs /r:log4net.dll

编译好。但是,当我运行exe作为

BasicXMLConfiguration.exe

我收到以下错误。

 log4net:ERROR XmlConfigurator: Failed
 to find configuration section 'log4net' in  the application's
 .config file. Check your .config file for the <log4net> and <
 configSections> elements. The configuration section should look
 like: <section n ame="log4net" 
      type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>

如何引用App.Config?

1 个答案:

答案 0 :(得分:4)

您需要将app.config重命名为name_of_your_exe.config假设您的控制台应用程序名称为Log4NetTest.exe,然后将app.config重命名为Log4Net.exe.config,它就可以了。

由于您的计划名称为BasicXMLConfiguration.exe,因此请将app.config重命名为BasicXMLConfiguration.exe.config,这样就可以了。