我正在使用Microsoft Application Insights
我的 Web 应用程序。我使用 Application Insights TraceListener NuGet 包进行日志记录。那工作得很好。
现在我想切换到 NLog。我添加了Microsoft.ApplicationInsights.NLogTarget
NuGet 包并在我的 NLog 配置文件中添加了一个新的 NLog 目标:
<target name='ai' xsi:type='ApplicationInsights' />
NLog 抛出异常:
Target cannot be found: 'ApplicationInsights'
我还尝试通过扩展添加程序集,如下所示:
<extensions>
<add assembly="Microsoft.ApplicationInsights.NLogTarget" />
</extensions>
但它也没有奏效。
有什么建议么?