Update all dotnet tools on one command

Update all dotnet tools on one command

To be a developer is to be lazy. I often use the dotnet global tools set up in the dotnet cli.

Unfortunately, to date there is no : “dotnet tool update --all” command to be able to update all the packages at the same time. Here is the powershell command that I use to update all of them while lying in its seat:

Read more

Conquering the global tool in .NET Core

Conquering the global tool in .NET Core

Conquering the global tool in .NET Core

As you may already know, the .NET Core allows us to create and run applications from a multitude of platforms. It can be difficult to distribute them, especially in console applications. If we look at what exists in the open source world and especially under NodeJS, we can download and install an application quite easily. Then, it is automatically accessible from any folder on the PC. Here is an example with node :

$ npm install -g myLibrary
$ myLibrary

Read more