RobSwDev
RobSwDev
I guess so. Does that mean this issue should be moved?
For my particular use case, the issue seems to be (from poking around `OpenSolutionAsync`) that the solution is loaded 1 project at a time, sequentially: the code loops over each...
My repo has ~ 1600 cs files in 30-40 projects. To format a single file (using `--include`) takes **94** seconds. To format them all takes 115 seconds. By comparison, doing...
Huh - that does repro for me. I have VS Version 17.12.5 
Will there still be a way to customize test methods that run in an STA thread? We find it useful to override this attribute to add additional functionality for STA...
We have some tests that can only run in certain environments or configurations. E.g. WindowsOnly, LinuxOnly, DebugOnly, ReleaseOnly, GAOnly are universal, but we also have some bespoke switches for our...
We've also put some "universal" cleanup logic in the test attribute, and I just noticed that such cleanup logic is no longer being run due to #5707. Annoyingly, it's the...
Yes - ConditionBaseAttribute definitely looks helpful - we will switch to those, and get rid of our bespoke implementation. Looking at the class though, it's a little confusing. There's an...
One other thing we do before & after the test is attach and detach from `Application.ThreadException` (Whether we need to do this or not is not clear to me!) If...
Hi @Youssef1313 We're changing to use ConditionBaseAttribute. One of the conditions we want to create depends on the TestContext. What's the best way of achieving this? Something like reading and...