Log4net。它可以在 vb6 Interop 到 .net 中工作吗?
我在 vb6 中有一些遗留应用程序,并且正在与 .net 进行互操作,
这一切都可以单独在 net 中正常工作,但在 vb6 中它不会创建日志。 我看不出我做错了什么。
我已经使用 log4net 使用配置文件,并且我已将 log4net configsection 添加到 C:\Program Files\Microsoft Visual Studio\vb6.exe.config
有人让它在 vb6 中工作吗? 步骤是什么?
I have some legacy application in vb6 and I am interoping into .net
It all works fine in net alone but in vb6 it does not create the log.
I cannot see what I am doing wrong.
I have using log4net using config file and I have added the log4net configsection into
C:\Program Files\Microsoft Visual Studio\vb6.exe.config
has anybody got it working in vb6?
What are the steps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
vb6.exe.config 不可能工作,因为这是 VB 6 IDE,而不是您的旧应用程序。
您必须初始化并使用您正在互操作的 .net 库中的 log4net。您可以使用 XmlConfigurator 和单独的配置文件来执行此操作。
vb6.exe.config could not possibly work since this is the VB 6 IDE, not your legacy application.
You would have to initialize and use log4net from the .net libraries you are interop'ing with. You can do this using XmlConfigurator and a separate config file.