I have one question about the ValidationContext in an Visual Studio 2013 Isolated Shell project.
I use a compiler on another thread, and would like to add the validation errors to the error toolbox window of the visual studio shell by writing:
context.LogError(errorDescription, cRuleCompilationErrorCode, modelElements);
This call from the other thread doesn't populate the error tool window. I also tried to call the LogError method over the ThreadHelper from MPF, but also nothing happend. (I thought I should call the method on the UI thread)
ThreadHelper.Generic.Invoke(() => context.LogError(errorDescription, cRuleCompilationErrorCode, modelElements));
I would be very thankfull if someone has an idea how to populate the error tool window from another thread.
Thx Manuel