Bart Koelman
Bart Koelman
That sounds like a scenario where you'd just want to run `dotnet jb cleanupcode` instead of using Regitlint. Style settings can be in `.editorconfig` files (at the repository and/or solution...
In my experience, there's usually additional scripting needed. Examples [here](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/.github/workflows/build.yml) and [here](https://github.com/SteeltoeOSS/Steeltoe/blob/main/build/pr-code-cleanup.yml). Actually the story is worse. Resharper can be combined with StyleCop, which has its own config file and...
@DustinCampbell To have a bit more experimentation freedom, I took the existing sources here and added them directly into my analyzer project. And modified them heavily. What I now have...
@distantcam I haven't tried, but it looks like you can already. Instead of calling the next method from your tests: `protected void HasDiagnostic(string markupCode, string diagnosticId)` you can instead call...
Sorry to interfere, but I believe I have something to add for taking into consideration here. I would prefer to see an optional parameter or overloads of HasDiagnostic, NoDiagnostic and...
Thanks for the clarifications. I've run `dotnet --info` on these images, see the outcomes below: | Image | SDK versions | Runtime versions | |---|---|---| | ubuntu-24.04 | 8.0.4 |...
Couldn't agree more. This looks similar to #4662.
@TWhidden Yes, I've tested that it also supports System.Text.Json.
@RicoSuter I'm not sure what you're referring to, can you clarify? This change is fully backwards compatible. It just adds a field and a partial method to enable overruling the...
I'm being blocked by this limitation, although I'm not entirely sure it's the same issue. Here's my scenario, in simplified form: ```c# public abstract class Building; public class Residence :...