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

Temporarily remove dotnet run argument separator #1017

Merged
merged 1 commit into from
Apr 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ public abstract class ApplicationDeployer : IApplicationDeployer

// 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();

Expand Down