React to WebListener rename.
This commit is contained in:
parent
7ea92f08fc
commit
2f26170dbf
|
|
@ -64,7 +64,7 @@ elseif (($serverType -eq "Kestrel") -or ($serverType -eq "WebListener"))
|
|||
}
|
||||
elseif ($serverType -eq "WebListener")
|
||||
{
|
||||
$command = $command + " --server Microsoft.AspNetCore.Server.WebListener"
|
||||
$command = $command + " --server Microsoft.AspNetCore.Server.HttpSys"
|
||||
Write-Host "Executing the command '$command'"
|
||||
Invoke-Expression $command
|
||||
}
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
|||
}
|
||||
|
||||
executableArgs += $" --server.urls {uri} "
|
||||
+ $" --server {(DeploymentParameters.ServerType == ServerType.WebListener ? "Microsoft.AspNetCore.Server.WebListener" : "Microsoft.AspNetCore.Server.Kestrel")}";
|
||||
+ $" --server {(DeploymentParameters.ServerType == ServerType.WebListener ? "Microsoft.AspNetCore.Server.HttpSys" : "Microsoft.AspNetCore.Server.Kestrel")}";
|
||||
|
||||
Logger.LogInformation($"Executing {executableName} {executableArgs}");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue