Temporarily remove `dotnet run` argument separator

- Workaround for "dotnet run no longer passes additional arguments to application" (https://github.com/dotnet/sdk/issues/1118)
This commit is contained in:
Mike Harder 2017-04-12 14:22:18 -07:00 committed by GitHub
parent ad1d0cc67d
commit 5f9fa5c009
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ 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
public static readonly string DotnetArgumentSeparator = "--";
// 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 = "";
private readonly Stopwatch _stopwatch = new Stopwatch();