adamnova
adamnova
That would make sense, since the first Stryker build (handled by MSBuild, not sure how mutations are handled internally by Stryker) failed properly with `error CS8601: Possible null reference assignment.`...
I've played a little more with my repro project and first I could only run into this problem once I enabled treat warnings as errors and changed the error to...
I changed the severity of nullability to error as well. I was isolating that one variable (as in if its really caused by treat warnings as errors) and found out...
I have updated the title, because the I was able to replicate it without the treat as warnings and errors in a new project made from scratch. I must've made...
It would not compile because the severity of that rule is set to an error. This is done by setting `dotnet_diagnostic.CS8601.severity = error` in .editorconfig. Does it really compile for...
I see, sorry for the confusion. I considered them separately because one is done through `.editorconfig` and the other one is project configuration. So it was possible these were 2...