Update the self host deployer message so published application command is accurate
This commit is contained in:
parent
5106376cbb
commit
9b214971f6
|
|
@ -64,7 +64,7 @@ namespace Microsoft.AspNetCore.Server.Testing
|
||||||
executableArgs += $" --server.urls {uri} "
|
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.WebListener" : "Microsoft.AspNetCore.Server.Kestrel")}";
|
||||||
|
|
||||||
Logger.LogInformation($"Executing {DotnetCommandName} {executableArgs}");
|
Logger.LogInformation($"Executing {executableName} {executableArgs}");
|
||||||
|
|
||||||
var startInfo = new ProcessStartInfo
|
var startInfo = new ProcessStartInfo
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue