-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
CLI Commands: usability improvements #5188
Labels
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
Milestone
Comments
10 tasks
We should do this but it can be post RTM. |
This was referenced Jun 7, 2016
Note that new preview 2 web application templates use 'dotnet bundle' command, so asking for 'dotnet help ef' runs the bundler/minifier and may modify the contents of the project. |
@VanKichline you can workaround with the dotnet ef --no-build --help
dotnet ef --no-build migrations list
# etc... |
This was referenced Sep 22, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
Some ideas for improving the usability of dotnet ef.
dotnet ef database update
doesn't list the migrations being applied/reverted--help
. We can show help dialog without dispatching to inside-man.--json
on all subcommandsdotnet ef dbcontext list --no-build
throws, butdotnet ef --no-build dbcontext list
works.Part of this is just the way that Microsoft.Extensions.CommandLineUtils works.Command line utils: allow 'inherited' options extensions#131. We still can't completely do this with the way we invoke ef.exe from dotnet-ef.dll.Depending on the outcome of https://github.com/dotnet/cli/issues/2514, we may be able to remove "inside-man" dispatch for RTM.NVM. We've pivoted away from ProjectDependencyCommandFactory to our own thing.Depending on the resolution to https://github.com/dotnet/cli/issues/2645, we may need to change Ms.EfCore.Tools to also target class libraries. (Support this by cross-compiling the library to netstandard1.5)tracked here: Tools: Support .NET Core Class Library projects #5320Help dialog should show options top-level args (Fixed in CommandLineUtils.--framework
) even when listing args for subcommands.The text was updated successfully, but these errors were encountered: