Completely Remove ApplicationInsights from Visual Studio 2015

∥☆過路亽.° 提交于 2019-12-01 06:32:24

The easiest way is to disable the extension from tools->extensions and updates window, and restarting VS. All of our features should disappear, since VS will no longer load our extension.

Uninstalling the extension from tools->extensions and updates should not break anything, as there are no dependencies on our extension. Internally, we do this all the time for testing ourselves.

HOWEVER, uninstalling the entire feature from Add->Remove Programs can and will break things, since that will also uninstall our interfaces assembly, which other features, like ASP.NET presume to exist.

On my PC I tried to uninstall AI, I go to Add or remove program and uninstall the application insight.

Next time when I create the asp.net mvc web-application it doesn't work (it's show me error like HRESULT ....). So if you are trying to remove it, please don't do it, it will break your visual studio.

Best you can do is remove it from Nuget package for your solution or save your sollution as the template (it will save your time next time you want to create a project without application insight).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!