You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When renaming a source file A.cs → B.cs, the code fix for SA1649 properly updates each project which previously included A.cs to now include B.cs. However, it only removesA.cs from the project which was the context for the rename operation.
During the rename, the original file needs to be removed from all projects which contained it.
The text was updated successfully, but these errors were encountered:
…ts which reference the same file before adding them there (to not end up with two identical files in those projects) and also to re-add files with correct path (to not get a copy where there was a link before)
DotNetAnalyzers#1693DotNetAnalyzers#3866
When renaming a source file A.cs → B.cs, the code fix for SA1649 properly updates each project which previously included A.cs to now include B.cs. However, it only removes A.cs from the project which was the context for the rename operation.
During the rename, the original file needs to be removed from all projects which contained it.
The text was updated successfully, but these errors were encountered: