-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move & rename the files from Suppression to Synchronization folder #5045
Move & rename the files from Suppression to Synchronization folder #5045
Conversation
…older Preparation step before replacing IsSuppressed with ServerIssue in IAnalysisIssueVisualization
Kudos, SonarCloud Quality Gate passed! |
@@ -122,13 +122,12 @@ public async Task UpdateFileStorageAsync() | |||
Debug.Assert(fullSolutionFilePath != null, "Not expecting the solution name to be null in Connected Mode"); | |||
var solnNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(fullSolutionFilePath); | |||
|
|||
var allSuppressedIssues = serverIssuesStore.Get(); | |||
var allSuppressedIssues = serverIssuesStore.Get().Where(x => x.IsResolved); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here's a logic change I think this change requires some tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's covered by the existing tests. I just moved this LINQ call from one place to the other.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some testing might be needed
We decided to go with a different approach |
Preparation step before replacing IsSuppressed with ServerIssue in IAnalysisIssueVisualization
Fixes #5044
Part of #5040