Removed the workaround of copying forwarder dlls for remote deployment scenario testing

This commit is contained in:
Kiran Challa 2016-11-21 19:38:47 -08:00
parent b7c9b24193
commit 884872b969
1 changed files with 0 additions and 11 deletions

View File

@ -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