#785 VS hang when loading project
Thread 26 holds a lock in AutomationScope, the main thread is attempting to acquire this lock, but thread 26 needs to get back onto the main thread to call extensibility.ExitAutomationFunction(), resulting in a dead lock.
The fix is to remove the lock - this class doesn't need any thread safety and really doesn't need thread safety between multiple instances.
↧