在 Visual Studio 中的 Web 应用程序的两个位置包含一个文件
我有一个项目 MyCompany.Common
,它可以做很多事情,包括提供一个使用 NLog。在 MyCompany.Common
内部,有一个 NLog.config
文件,它定义了一些标准日志记录目标,基本上是一个配置框架,其中包括一些默认文件(特定于我的应用程序)位置,例如 C:\ProgramData\MyCompany\global.log.config。 Nlog.config
设置为始终复制。
这样做的结果是,当 MyCompany.Common
包含在任何其他项目中时,NLog.config
和 NLog.dll
会部署到应用程序中目录,一切正常。
但是,当在 Web 应用程序中引用 MyCompany.Common
时,Nlog.* 文件会进入 bin\
目录,而 NLog 需要 Web 根目录中的文件应用程序文件夹。
我尝试向该文件添加一个链接,该链接在部署时效果很好(来自 MyCompany.Common
的副本被复制到 Web 应用程序目录的根目录),但在 Visual Studio 时不起作用正在调试。
如果不直接复制该文件(这意味着有 2 个以上可能不同的版本,以及 2 个以上需要更新的位置),是否有任何方法可以设置此文件,使其最终位于 Web 应用程序根目录中?
I have a project, MyCompany.Common
, which does a number of things, including providing a common logging framework that uses NLog. Inside MyCompany.Common
, there is an NLog.config
file that defines some standard logging targets, and basically a configuration framework of sorts, which includes files from some default (specific to my app) locations, like C:\ProgramData\MyCompany\global.log.config
. Nlog.config
is set to Copy Always.
The result of this is that when MyCompany.Common
gets included in any other project, NLog.config
and NLog.dll
get deployed to the application directory, and everything Just Works.
However, when MyCompany.Common
gets referenced in a web application, the Nlog.* files go into the bin\
directory, while NLog expects the files in the root of the web application folder.
I tried adding a Link to the file, which works great when it gets deployed (the copy from MyCompany.Common
gets copied to the root of the web app dir), but doesn't work while Visual studio is debugging.
Short of outright copying the file (which would mean there are 2+ potentially different versions -- and 2+ spots to update), is there any way to set this file up so it ends up in the web app root?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论