我安装了Visual Studio 2015,当我打开旧的解决方案时,我开始在调试输出中收到如下消息:
“ Application Insights遥测技术:
{“名称”:“ Microsoft.ApplicationInsights.XXX.RemoteDependency” ...
我以为已添加NuGet程序包,但找不到。您应该能够编辑ApplicationInsights.config并将其删除,但是由于未安装Nuget软件包,所以我没有此文件。
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
http://apmtips.com/blog/2015/02/02/developer-mode/
有没有其他人遇到过这种情况并将其删除?
最佳答案
我在项目的根文件夹中使用以下值创建了一个名为“ ApplicationInsights.config”的文件,现在消息消失了。将文件放在此处之后,不要忘记构建您的项目,我还必须重新启动Visual Studio,消息才会消失。
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
<TelemetryChannel>
<DeveloperMode>false</DeveloperMode>
</TelemetryChannel>
</ApplicationInsights>