Visual Studio 2015 调试输出显示“Application Insights Telemetry: "name":"Microsoft.Applicati
Posted
技术标签:
【中文标题】Visual Studio 2015 调试输出显示“Application Insights Telemetry: "name":"Microsoft.ApplicationInsights.XXX.RemoteDependency"【英文标题】:Visual Studio 2015 Debug output showing "Application Insights Telemetry: "name":"Microsoft.ApplicationInsights.XXX.RemoteDependency"Visual Studio 2015 调试输出显示“Application Insights Telemetry: "name":"Microsoft.ApplicationInsights.XXX.RemoteDependency" 【发布时间】:2015-08-14 11:08:24 【问题描述】:我安装了 Visual Studio 2015,当我打开一个旧解决方案时,我开始在调试输出中收到如下消息:
“Application Insights 遥测: "name":"Microsoft.ApplicationInsights.XXX.RemoteDependency"...
我以为添加了一个 NuGet 包,但我找不到它。您应该能够编辑 ApplicationInsights.config 并将其删除,但由于未安装 Nuget 包,因此我没有此文件。
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
http://apmtips.com/blog/2015/02/02/developer-mode/
有没有其他人遇到过这种情况并将其删除?
【问题讨论】:
【参考方案1】:我在项目的根文件夹中创建了一个名为“ApplicationInsights.config”的文件,其值如下,现在消息消失了。不要忘记在将文件放在那里后构建您的项目,我还必须重新启动 Visual Studio 才能使消息消失。
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
</ApplicationInsights>
【讨论】:
以上是关于Visual Studio 2015 调试输出显示“Application Insights Telemetry: "name":"Microsoft.Applicati的主要内容,如果未能解决你的问题,请参考以下文章
非调试模式时在 Visual Studio 的输出窗口中显示消息?
非调试模式时在 Visual Studio 的输出窗口中显示消息?
按值传递的参数在 Visual Studio 2015 x64 调试器中显示不正确?