Skip to content

Commit ef30062

Browse files
committed
var
1 parent 9b3b3cf commit ef30062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cli/dotnet/Commands/Test/TestApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private async Task WaitConnectionAsync(CancellationToken token)
147147
{
148148
while (!token.IsCancellationRequested)
149149
{
150-
NamedPipeServer pipeConnection = new NamedPipeServer(_pipeNameDescription, OnRequest, NamedPipeServerStream.MaxAllowedServerInstances, token, skipUnknownMessages: true);
150+
var pipeConnection = new NamedPipeServer(_pipeNameDescription, OnRequest, NamedPipeServerStream.MaxAllowedServerInstances, token, skipUnknownMessages: true);
151151
pipeConnection.RegisterAllSerializers();
152152

153153
await pipeConnection.WaitConnectionAsync(token);

0 commit comments

Comments
 (0)