Skip to content
This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Commit 5f9fa5c

Browse files
authored
Temporarily remove dotnet run argument separator
- Workaround for "dotnet run no longer passes additional arguments to application" (dotnet/sdk#1118)
1 parent ad1d0cc commit 5f9fa5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ public abstract class ApplicationDeployer : IApplicationDeployer
2222

2323
// This is the argument that separates the dotnet arguments for the args being passed to the
2424
// app being run when running dotnet run
25-
public static readonly string DotnetArgumentSeparator = "--";
25+
// Temporarily remove separator to workaround "dotnet run no longer passes additional arguments
26+
// to application" (https://github.com/dotnet/sdk/issues/1118)
27+
public static readonly string DotnetArgumentSeparator = "";
2628

2729
private readonly Stopwatch _stopwatch = new Stopwatch();
2830

0 commit comments

Comments
 (0)