From 7d0770b0e4aefd414cca64ed2afd35870182243c Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Fri, 21 Apr 2017 15:27:07 -0700 Subject: [PATCH] Revert "Temporarily remove `dotnet run` argument separator" This reverts commit 5f9fa5c009f84633aeec07655fad53e491843f45. --- .../Deployers/ApplicationDeployer.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs index aa31a3f631..0adba8c2d4 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs @@ -22,9 +22,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting // This is the argument that separates the dotnet arguments for the args being passed to the // app being run when running dotnet run - // Temporarily remove separator to workaround "dotnet run no longer passes additional arguments - // to application" (https://github.com/dotnet/sdk/issues/1118) - public static readonly string DotnetArgumentSeparator = ""; + public static readonly string DotnetArgumentSeparator = "--"; private readonly Stopwatch _stopwatch = new Stopwatch();