React to change in sdk that causes dotnet run to print restore output

This commit is contained in:
Pranav K 2017-11-10 14:47:58 -08:00
parent 3c727be270
commit 311a92ddee
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
version:2.1.0-preview1-15549
commithash:f570e08585fec510dd60cd4bfe8795388b757a95
version:2.1.0-preview1-15564
commithash:1f3f14382764e06b7e691e5ee89d12a280249284

View File

@ -93,7 +93,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
var targetFramework = DeploymentParameters.TargetFramework ?? (DeploymentParameters.RuntimeFlavor == RuntimeFlavor.Clr ? "net461" : "netcoreapp2.0");
executableName = DotnetCommandName;
executableArgs = $"run --framework {targetFramework} {DotnetArgumentSeparator}";
executableArgs = $"run --no-restore --framework {targetFramework} {DotnetArgumentSeparator}";
}
executableArgs += $" --server.urls {hintUrl} "