dotnet格式不保存输出

时间:2019-09-29 11:53:48

标签: c# .net format

为什么使用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

非常感谢

1 个答案:

答案 0 :(得分:0)

我的错误。

在方法和for循环的标题中,有专用关键字和“ i”而不是“ i ++”。

正确后,格式非常好。