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

dotnet watch

dotnet watch

Develop ASP.NET Core apps using a file watcher

By Rick Anderson and Victor Hurdugaci

dotnet watch is a tool that runs a .NET Core CLI command when source files change. For example, a file change can trigger compilation, test execution, or deployment.

This tutorial uses an existing web API with two endpoints: one that returns a sum and one that returns a product. The product method has a bug, which is fixed in this tutorial.

Read more