Skip to content

Commit

Permalink
dotnet#51371 added pipeName case for running on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan committed Jan 20, 2022
1 parent 4b2dfb1 commit 69ea51e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected static string GetNamedPipeServerStreamName()
return @"LOCAL\" + Guid.NewGuid().ToString("N");
}

if (PlatformDetection.IsWindows)
if (PlatformDetection.IsWindows || !PlatformDetection.IsNotRunningOnMacOS)
{
return Guid.NewGuid().ToString("N");
}
Expand Down

0 comments on commit 69ea51e

Please sign in to comment.