I'm trying to write an extension for VS2010, but I get this every time:
- Hit F5 to start debugging
- A new instance of visual studio starts up
- I can see a bunch of DLLs loading in the debug host while the new instance i开发者_JAVA百科s starting
- It then fails with a "LoaderLock".
When I continue after that, the new instance is fully functional, but there's no debugging happening at all.
The same happens when creating an addin.
Any clues?
You should disable LoadLockException doing the following :
- Click Debug/Exception...
- Extend Manage debugging assistant
- Uncheck LoaderLock in the list
The exception should not be thrown anymore when debbugging.
精彩评论