Fix All always does the entire project, regardless of input
333fred opened this issue · 0 comments
333fred commented
This ignores the input fix all scope, and always runs fixers over the entire project, regardless of whether just one document is requested.
Example of the behavior:
- Create a new WPF app with
dotnet new wpf
. - Open in vscode
- Open Main.xaml.cs
- Run "Fix all in document" on unused usings.
Expected:
App.xaml.cs is not touched.
Actual:
Unused usings are removed from App.xaml.cs as well.