.NET Core Help
Creating applications with Visual Studio has many advantages. One of the most helpful is starting a project with templates. With wizardary, you can create solution scafolding within seconds. The introduction of .net core brought with it the .net core cli. As always, you can create .net core apps using studio however you can also use the cli. This feature is helful for quick demos, proof of concepts, and quick additions when a wizard isn't needed. After playing with it for a while, here are a few quick "help" commands for my reference and yours.
dotnet --version
It will give you the current runtime version.
dotnet -- info
It will give you a list of all runtimes installed in addtion to SDKs installed and info about the host system,
dotnet --list-runtimes
It will give you the runtimes installed.
dotnet --list-sdks
It will give you the SDKs installed.
dotnet new -l
It will list out available item creation templates.
dotnet --version
It will give you the current runtime version.
dotnet -- info
It will give you a list of all runtimes installed in addtion to SDKs installed and info about the host system,
dotnet --list-runtimes
It will give you the runtimes installed.
dotnet --list-sdks
It will give you the SDKs installed.
dotnet new -l
It will list out available item creation templates.
dotnet --help
It will list out available runtime and SDK command. This is the catch all reference command.
Comments
Post a Comment