Completely Remove ApplicationInsights from Visual Studio 2015

前端 未结 2 1549
南方客
南方客 2021-01-13 15:03

I\'ve looked around, and haven\'t been able to find a good answer, so I\'m posting this question in the hopes that it can be a sort of \"go to\" for others hoping to entirel

2条回答
  •  醉酒成梦
    2021-01-13 15:29

    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.

提交回复
热议问题