Visual Studio 2015调试输出显示"Application Insights遥测:{"
本文关键字:quot Insights 遥测 Application Studio 输出 显示 Visual 2015 调试 | 更新日期: 2023-09-27 18:07:52
我安装了Visual Studio 2015,当我打开一个旧的解决方案时,我开始在我的调试输出中得到如下消息:
"应用洞察遥测:{" name ":"Microsoft.ApplicationInsights.XXX.RemoteDependency"…
我认为NuGet包已经添加,但我找不到它。您应该能够编辑ApplicationInsights。配置并删除这个文件,但是因为没有安装Nuget包,所以我没有这个文件。
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
http://apmtips.com/blog/2015/02/02/developer-mode/有没有其他人经历过这种情况并将其删除?
我创建了一个名为"ApplicationInsights "的文件。配置"在我的项目的根文件夹与下面的值,现在消息消失了。不要忘记在把文件放在那里之后构建你的项目,我还必须重新启动Visual Studio才能让消息消失。
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
</ApplicationInsights>