Skip to content

Commit

Permalink
dotnet#51371 removed pipePath change in windows file
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan committed Jan 21, 2022
1 parent 507d239 commit 6154087
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,6 @@ public override void EndWrite(IAsyncResult asyncResult)

internal static string GetPipePath(string serverName, string pipeName)
{
if (RuntimeInformation.RuntimeIdentifier.StartsWith("iossimulator")
|| RuntimeInformation.RuntimeIdentifier.StartsWith("tvossimulator"))
{
return $"/tmp/{pipeName}";
}

string normalizedPipePath = Path.GetFullPath(@"\\" + serverName + @"\pipe\" + pipeName);
if (string.Equals(normalizedPipePath, @"\\.\pipe\" + AnonymousPipeName, StringComparison.OrdinalIgnoreCase))
Expand Down

0 comments on commit 6154087

Please sign in to comment.