Fix C# style with dotnet format

This commit is contained in:
Raul Santos 2022-08-27 03:22:23 +02:00
parent 390333e822
commit d35c58507c
No known key found for this signature in database
GPG key ID: B532473AE3A803E4
12 changed files with 158 additions and 139 deletions

View file

@ -78,7 +78,7 @@ namespace GodotTools.IdeMessaging
clientStream.WriteTimeout = ClientWriteTimeout;
clientReader = new StreamReader(clientStream, Encoding.UTF8);
clientWriter = new StreamWriter(clientStream, Encoding.UTF8) {NewLine = "\n"};
clientWriter = new StreamWriter(clientStream, Encoding.UTF8) { NewLine = "\n" };
}
public async Task Process()