类型或命名空间名称“XmlConfigurator”找不到
找不到类型或命名空间名称“XmlConfigurator”(您是否缺少 using 指令或程序集引用?)
我是否缺少命名空间???
The type or namespace name 'XmlConfigurator' could not be found (are you missing a using directive or an assembly reference?)
Am I missing a namespace???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须将
log4net.dll
添加到您的项目和using log4net.Config;
命名空间You have to add
log4net.dll
to your project and theusing log4net.Config;
namespace你丢失的 dll。右键单击您的项目并
添加引用...
指向正确的 dll。Your missing dll. Right click on your project and
Add Reference...
point to correct dll.有可能是你没有添加dll。这需要右键单击您的项目并添加参考 DLL。我发现之前的答案中没有提到另一个相关步骤。
您可能没有使用正确的运行时。我发现 log4net 需要完整的配置文件。例如,.NET 4 的客户端配置文件将生成此错误,但如果您使用完整的配置文件,则不会遇到此错误。
There is the possibility that you have not added the dll. This would require right clicking your project and adding the reference DLL. There is one other step that wasn't mentioned in the previous answers that I found relevant.
There is the possibility that you are not using the correct runtime. I found that log4net requires a full profile. For instance the client profile for .NET 4 will generate this error but if you use the full profile you will not experience this.