Today i've added your library to my project. It is a nice set of analyzers! Good job :)
I've encountered an error within a library where analyzer AV1580 can be triggered on code that is from outside library.
I am trying to call TryAsync in following code and this invocation is reported as wrong because first parameter of TryAsync has name v. This method is outside my control and I think that it should not trigger this response.
0>IAdminPortClientExtensions.cs(11,38): Error AV1580 : Argument for parameter 'v' in method call to 'Prelude.TryAsync<ServerStatus>(Task<ServerStatus>)' calls nested method 'IAdminPortClient.QueryServerStatus(CancellationToken)' (https://github.com/dennisdoomen/CSharpGuidelines/blob/5.6.0/_rules/1580.md)
Today i've added your library to my project. It is a nice set of analyzers! Good job :)
I've encountered an error within a library where analyzer AV1580 can be triggered on code that is from outside library. I am trying to call
TryAsync
in following code and this invocation is reported as wrong because first parameter ofTryAsync
has namev
. This method is outside my control and I think that it should not trigger this response.