Hey there, fellow developer! In this tutorial, I’ll walk you through building an awesome Tic Tac Toe game using Blazor WebAssembly. So grab your coding gear, and let’s get started!
Tag: visual-studio
Mapperly: The Coolest Object Mapping Tool in Town
Hey there, developers! Today I want to talk about an astonishing .NET library called Mapperly, which has been gaining much attention in the developer community. Mapperly is a powerful source generator that simplifies the implementation of object-to-object mappings in .NET applications. Mapperly takes mapping to a whole new level by generating mapping code for you […]
How to Resolve Unauthorized Access Issue with Private NuGet Repository
Have you ever encountered an issue while trying to restore packages from a private NuGet repository in JetBrains Rider using Azure DevOps? I recently faced a similar problem and struggled with the “401 Unauthorized” error. In this blog post, I will guide you through the steps I took to fix this issue. So, let’s dive […]
Say Hello to Reliable Minimal APIs with Integration Tests
Hi there! Integration testing is an important part of the software development process because it helps ensure that your APIs are working correctly and returning the expected result. Unfortunately, many people often mix up integration tests with mock testing and use mock for integration tests. This can lead to issues when testing APIs, as mock […]
You no longer need a Dockerfile
The .Net 7 release is bringing a lot of changes, and one of the most significant is the removal of the need for a Dockerfile. Container images are now a supported output type of the .NET SDK. You no longer need a separate Dockerfile to containerize your .NET applications. You can publish your application and […]
Build your own cli because you can
I always admire the azure cli, my DevOps journey in the past few years was richfull with the usage of azure cli, and that made me curious on how to build my own, in a similar way to the Azure one. follow me in this blog post where I’m going to show you my exact, step-by-step, process for creating a cli using dotnet C#.