Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable plugins from command line on visual studio?

Resharper is killing me for some reason on startup, I just need to get in, is there a command line switch for load without addins?

like image 505
DevelopingChris Avatar asked May 20 '09 00:05

DevelopingChris


1 Answers

You are probably looking for the /SafeMode command line switch:

devenv.exe /SafeMode

This will start Visual Studio with all add-ins disabled.

like image 164
Dirk Vollmar Avatar answered Nov 15 '22 22:11

Dirk Vollmar