This repository was archived by the owner on Nov 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
Simplify watcher arguments proposal #105
Comments
I want to run dotnet run Shouldn't after be |
Yes, fixed :) |
I would propose that |
That's a tricky one because |
Merged
Done? |
Done :) |
4-Thanks! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Proposed changes:
--exit-on-change
(confirmed that it's not used by anyone internally)--command
--help
. That's special and shows watcher help).Examples:
dotnet watch --help
dotnet watch
ordotnet watch --help
dotnet run
dotnet watch
ordotnet watch --command run --
dotnet watch run
dotnet run -- --arg1 value
dotnet watch --arg1 value
ordotnet watch --command run -- -- --arg1 value
(yes, double--
)dotnet watch run -- --arg1 value
dotnet run --framework net451 --
dotnet watch --command run -- --framework net451 --
dotnet watch run --framework net451 --
dotnet test
dotnet watch --command test --
dotnet watch test
dotnet test -parallel none
dotnet watch --command test -- -parallel none
dotnet watch test -parallel none
Pros:
watch
afterdotnet
. Sodotnet <args>
becomesdotnet watch <args>
Cons:
dotnet watch
shows help.run
if you wantdotnet run
--help
to the app being watchedcc @glennc
The text was updated successfully, but these errors were encountered: