React to change in sdk that causes dotnet run to print restore output
This commit is contained in:
parent
3c727be270
commit
311a92ddee
|
|
@ -1,2 +1,2 @@
|
||||||
version:2.1.0-preview1-15549
|
version:2.1.0-preview1-15564
|
||||||
commithash:f570e08585fec510dd60cd4bfe8795388b757a95
|
commithash:1f3f14382764e06b7e691e5ee89d12a280249284
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
var targetFramework = DeploymentParameters.TargetFramework ?? (DeploymentParameters.RuntimeFlavor == RuntimeFlavor.Clr ? "net461" : "netcoreapp2.0");
|
var targetFramework = DeploymentParameters.TargetFramework ?? (DeploymentParameters.RuntimeFlavor == RuntimeFlavor.Clr ? "net461" : "netcoreapp2.0");
|
||||||
|
|
||||||
executableName = DotnetCommandName;
|
executableName = DotnetCommandName;
|
||||||
executableArgs = $"run --framework {targetFramework} {DotnetArgumentSeparator}";
|
executableArgs = $"run --no-restore --framework {targetFramework} {DotnetArgumentSeparator}";
|
||||||
}
|
}
|
||||||
|
|
||||||
executableArgs += $" --server.urls {hintUrl} "
|
executableArgs += $" --server.urls {hintUrl} "
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue