Saturday, December 2, 2023

Useful dotnet CLI commands

 Below are some of useful dotnet cli commands

List installed SDKs

dotnet --list-sdks

List Installed runtimes

dotnet --list-runtimes

Show Version

dotnet --version

List installed workloads

dotnet workload list

Search workloads available

dotnet workload search

Install a new workload

dotnet workload install <workloadid>

Note: workload id available in workload search

Remove all installed workloads

dotnet workload clean


No comments:

Post a Comment

Object Oriented Programming- 2- Inheritance

Inheritance is one of the fundamental attributes of object-oriented programming. It allows you to define a child class...