Skip to content

Commit

Permalink
Revert "Scaffolding Change -d option to -m, since -d no longer works (#…
Browse files Browse the repository at this point in the history
…32606)" (#33282)

This reverts commit 5bceb5e.
  • Loading branch information
ajcvickers authored Mar 12, 2024
1 parent c8bcb0e commit d05e031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ef/Commands/DbContextScaffoldCommand.Configure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public override void Configure(CommandLineApplication command)
_connection = command.Argument("<CONNECTION>", Resources.ConnectionDescription);
_provider = command.Argument("<PROVIDER>", Resources.ProviderDescription);

_dataAnnotations = command.Option("-m|--data-annotations", Resources.DataAnnotationsDescription);
_dataAnnotations = command.Option("-d|--data-annotations", Resources.DataAnnotationsDescription);
_context = command.Option("-c|--context <NAME>", Resources.ContextNameDescription);
_contextDir = command.Option("--context-dir <PATH>", Resources.ContextDirDescription);
_force = command.Option("-f|--force", Resources.DbContextScaffoldForceDescription);
Expand Down

0 comments on commit d05e031

Please sign in to comment.