Using VS2017 MVC Web Api project, I have some unit tests which pass fine when run individually, but when run in parallel, I get the below error. I'd like to know how to be able to run these tests in parallel. > System.Reflection.ReflectionTypeLoadException > HResult=0x80131602 > Message=Unable to load one [...] read more
I have a somewhat complex trading application that handles lots of Event messages. It is a Windows MEF application that loads assemblies automatically at runtime. I decided to try Microsoft.StreamProcessing to convert events to IStreamable. I moved in slow steps. First, I just added the assembly through nuget to my [...] read more