Reputation: 11062
Environment: Visual studio 2022, v17.8.3 with net8 support
I did cleanup to c# solution with 6 projects using profile2 .
I found that vs 2022 during code cleanup using profile2 add these like comments:
/* Unmerged change from project 'xxxx (net6.0)'
Before:
foreach (var word in words)
After:
foreach (string word in words)
*/
Many of my source code files have these comments.
My Question:
Upvotes: 4
Views: 252