почему не сохраняются файлы после использования формата dotnet?Вывод кажется, что все работает хорошо.
dotnet format -v diag --files
D:\_Test\library\Roslyn\RoslynHelper\Format3\A.cs
Formatting code files in workspace 'D:\_Test\library\Roslyn\RoslynHelper\Format3\Rsp.csproj'.
Loading workspace.
Complete in 1098ms.
Determining formattable files.
Complete in 585ms.
Running formatters.
Formatting code file 'A.cs'.
Formatting code file 'A.cs'.
Formatting code file 'A.cs'.
Complete in 427ms.
Formatted code file 'A.cs'.
Formatted 1 of 3 files.
Format complete in 2222ms.
A.cs имеет содержимое:
for (int i = 0; i < args.Length; i ) {
private string _name = args[i];
private HttpCookie _cook = new HttpCookie(name, args[i]);
cook.Expires = DateTime.Now.AddYears(1);
Response.Cookies.Set(cook); }
В файл помещен файл по умолчанию .editorconfig: https://raw.githubusercontent.com/dotnet/format/master/.editorconfig
Большое спасибо