Jonathan Ou-yang

Results 7 comments of Jonathan Ou-yang

>Do you need to specify singular TF when you already specified TFS? My company's build infrastructure specifies a default `TF` via `Directory.Build.props` file, so I am not in control of...

>If you're expecting the project to build as net6.0 instead of net6.0-windows, you can modify the ClassLibrary2 project file as shown below... Thanks for the tip! While it works, the...

>If that's the case and you have a mix of projects that have both TF and TFS, rename all TF to TFS. Even a single target can be specified in...

>AllEnabledByDefault setting does not work with Roslynator analysers for some reason In .NET 6+ `AllEnabledByDefault` should be `All` instead. But even with the change, this won't work because how ``...

Issues still present using the latest preview .NET 8 analyzers. Particularly two issues: This code got a false positive saying `fileStream` is never null in the `finally` block: ```cs FileStream...

For the double-locked pattern false-positive, there is already a github issue: https://github.com/dotnet/roslyn-analyzers/issues/1649 For for-loop false-positive (I didn't list this in the reply above, but I did also see this in...

Additional info: looking at the open issues related to CA 1508, they are quite numerous and many of them unresolved for multiple years: https://github.com/dotnet/roslyn-analyzers/issues?q=is%3Aissue+is%3Aopen+CA1508