One of the project I had at Ingenico ePayments, I should integrate ApplePay as a new payment method supported by the new Ingenico api. During the integration of ApplePay, we need to generate certificates to authentify our server.
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:
How to create a new Azure Container Registry and push images on it.
If you want like me, have a private image repository to store your Docker projects, using Azure Container Registry is a solution.
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