From 884872b9695f5304e448877c4feca1e224ea28c2 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Mon, 21 Nov 2016 19:38:47 -0800 Subject: [PATCH] Removed the workaround of copying forwarder dlls for remote deployment scenario testing --- .../Deployers/RemoteWindowsDeployer/StartServer.ps1 | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/RemoteWindowsDeployer/StartServer.ps1 b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/RemoteWindowsDeployer/StartServer.ps1 index b14ebb8761..063d612730 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/RemoteWindowsDeployer/StartServer.ps1 +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/RemoteWindowsDeployer/StartServer.ps1 @@ -28,17 +28,6 @@ param( Write-Host "Executing the start server script on machine '$serverName'" -$forwarders="C:\Windows\System32\forwarders" -Write-Host "Copying all content under '$forwarders' as a temporary workaround for issue https://github.com/dotnet/cli/issues/2967" -if ($executablePath -eq "dotnet.exe") -{ - Copy-Item $forwarders\* $dotnetRuntimePath -} -else -{ - Copy-Item $forwarders\* $deployedFolderPath -} - if ($serverType -eq "IIS") { $publishedDirName=Split-Path $deployedFolderPath -Leaf