Disambiguate /p from -p on dotnet-run

This commit is contained in:
Nate McMaster 2018-04-21 08:13:29 -07:00
parent ed7e6db79e
commit 0f131ac245
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
executableName = DotnetCommandName;
// Set VerifyMatchingImplicitPackageVersion to disable errors when Microsoft.NETCore.App's version is overridden externally
// This verification doesn't matter if we are skipping restore during tests.
executableArgs = $"run --no-restore --framework {targetFramework} -p:VerifyMatchingImplicitPackageVersion=false {DotnetArgumentSeparator}";
executableArgs = $"run --no-restore --framework {targetFramework} /p:VerifyMatchingImplicitPackageVersion=false {DotnetArgumentSeparator}";
}
executableArgs += $" --server.urls {hintUrl} "