如何在VS2010下使用Log4Net

来源:互联网 发布:sql语句exit 编辑:程序博客网 时间:2024/04/27 06:22

log4net has a known issue of referencing a System.Web component which is not part of the .NET Framework 4 Client Profile and the VS2010 by default sets project target to be the lightweighted Client Profile. The solution is to change the target to .NET Framework 4:

Right click project -> properties -> Application. Change:

 .NET Framework 4 Client Profile 

to be:

 .NET Framework 4 

... and that should work, i.e. you can use log4net again...

 

 

来自:http://stackoverflow.com/questions/1767253/log4net-with-net-4-0

 

 

 

 范例:

 

App.config

 

 

注意:configSections节点和startup节点的顺序,否则只见文件而无法输出日志

 

 

AssemblyInfo.cs中添加

 

.cs代码正常使用

 

原创粉丝点击