Tag Archives: .NET

C# – MassTransit

By | 18/03/2026

In this post, we will see what MassTransit is and when and how we can use it in our projects. When building modern distributed systems, one of the most critical challenges we face is reliable communication between services. While we could implement ‘message based’ communication manually, managing message serialization, retry logic, error handling, and distributed… Read More: C# – MassTransit »

C# – How to deploy a Console Application in a Single File

By | 10/05/2023

In this post, we will see how to deploy a Console Application as a single file.This, can be advantageous when we want to simplify the distribution of our applications and make it easer for users to execute.Obviously, the size of the single file in a self-contained application is large since it includes the runtime and… Read More: C# – How to deploy a Console Application in a… »

.NET – CLI overview

By | 26/10/2022

In this post, we will see some commands of .NET command-line interface (CLI) that can help us to be more productive.CLI is a cross-platform toolchain for developing, building, running and publishing .NET applications; in order to run CLI commands, we can use either Terminal (CMD) or Powershell.For the complete list of commands, we can check… Read More: .NET – CLI overview »