-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update command descriptions to use singular form Updated the description text in `BrowseColumnCommand.cs` and `BrowseRelationshipCommand.cs` to use the singular form of "column" and "relationship" for improved clarity and accuracy.
- Loading branch information
1 parent
0d21af5
commit 308b25c
Showing
25 changed files
with
377 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
src/Dax.Vpax.CLI/Commands/Browse/BrowseRelationshipCommand.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
using Dax.Vpax.CLI.Commands.Package; | ||
|
||
namespace Dax.Vpax.CLI.Commands.Browse; | ||
namespace Dax.Vpax.CLI.Commands.Browse; | ||
|
||
internal sealed class BrowseRelationshipCommand : Command | ||
{ | ||
public static BrowseRelationshipCommand Instance { get; } = new BrowseRelationshipCommand(); | ||
|
||
private BrowseRelationshipCommand() | ||
: base(name: "relationship", description: "Display relationships information") | ||
: base(name: "relationship", description: "Display relationship information") | ||
{ | ||
AddAlias("r"); | ||
AddOption(CommonOptions.VpaxOption); | ||
AddOption(CommonOptions.ExcludeHiddenOption); | ||
AddOption(CommonOptions.OrderByOption); | ||
AddOption(CommonOptions.TopOption); | ||
|
||
Handler = new BrowseRelationshipCommandHandler(); | ||
} | ||
} |
Oops, something went wrong.