-
Notifications
You must be signed in to change notification settings - Fork 1.1k
dotnet run no longer passes additional arguments to application (2.0.0-preview1-005619) #1118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Doing a quick investigation, it looks like a regression with using the separator /cc @jonsequitur |
- Workaround for regression in `dotnet run` (dotnet/sdk#1118)
- Workaround for regression in `dotnet run` (dotnet/sdk#1118)
- Workaround for "dotnet run no longer passes additional arguments to application" (dotnet/sdk#1118)
- Workaround for "dotnet run no longer passes additional arguments to application" (dotnet/sdk#1118)
(working on it) |
[update] This branch should be able to fix the parser issue. 'foo' is in args now. However, the other functional test still cannot pass. https://github.com/dotnet/cli/compare/master...wli3:fix-dotnetrun--foo?expand=1 I am not sure if my set up is wrong in the beginning. "MSBuildTestApp" app can take whatever args and still print hello world? |
…120.6 (dotnet#1118) - Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19570.6
Repro Steps
dotnet new console
Program.cs
and addConsole.WriteLine(args.Length)
dotnet restore
dotnet run -- foo
Looking at the process tree, I can see that
dotnet run
is not passing the arguments todotnet exec
.Doesn't repro on previous build 2.0.0-preview1-005488.
The text was updated successfully, but these errors were encountered: