dotnet-cmdref
1.1.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global dotnet-cmdref --version 1.1.2
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local dotnet-cmdref --version 1.1.2
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-cmdref&version=1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package dotnet-cmdref --version 1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
dotnet-cmdref
A dotnet tool to store your commands for future reference. Use it to
- recall long commands you tend to forget
- build a reference library of commands
Install
The command to install the tool can be found on the NuGet page.
The tool can be invoked with cmdref
.
Usage
The tool displays a list of actions.
Create
View
Update
Delete
Show storage file path
Exit
When creating a command, the user will be prompted for the following:
Command Name
- A short but descriptive name of the commandPlatform
- Which platform the command is related to, such as dotnet cli, docker, or windows. Commands of the same platform will be listed together in alphabetical order when selecting which one to view/update/delete. Use the same platform in terms of to case/symbols for neat organization of commands.Description
- A longer description explaining the command.Command
- The command itself. Multiline commands currently not supported but contributions are welcome.
All commands are stored in a .json
file in a local app config directory named cmdref
.
This file can be backed up or copied to other machines to access your saved commands. It is intentionally kept in a pretty-printed json format so it can also be edited manually by a user.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
v1.1.2
- Fixed a couple typos in readme and project metadata
v1.1.1
- Created action for displaying storage file path
- Updated README.md