在没有Visual Studio的情况下添加引用

时间:2010-10-14 06:42:51

标签: c# visual-studio reference

我正在尝试学习log4Net,但是,我的PC中没有安装Visual Studio(由于缺少管理权限)。所以,我正在试用我的代码,将它们写在Windows XP的旧记事本中。在这里,如果我想添加对log4net.dll的引用,我该怎么办?

抱歉.NET天真。我刚刚学习!

例如,这是我尝试执行的示例代码。教程可用here

using System;   
namespace Tutorial1_GettingStarted   
{   
 class Program   
 {   
     static void Main( string[] args )   
     {   
      log4net.Config.BasicConfigurator.Configure();   
      log4net.ILog log = log4net.LogManager.GetLogger( typeof( Program ) );              

        log.Debug( "Hello World!" );   
        log.Info( "I'm a simple log4net tutorial." );   
        log.Warn( "... better be careful ..." );   
        log.Error( "ruh-roh: an error occurred" );   
        log.Fatal( "OMG we're dooooooomed!" );   

        Console.ReadLine();  // so you can read the output   
    }   
  }   
}  

1 个答案:

答案 0 :(得分:14)

编译时,请使用/r switch

csc Program.cs /r:Log4Net.dll