Prepare a .Net Core Console App for Docker

Last week I had the luck to attend the Microsoft Azure OpenHack in Amsterdam. We spent two and a half days learning a lot about kubernetes, Azure Container Services, Azure Container Registry, Azure OMS and Minecraft! In one of the challenges we decided to implement a sidecar container for logging purposes. So using...

.NET Core CLI and MSBUILD Cheat Sheet

This is a small .NET Core CLI and MSBUILD Cheat Sheet with the list of commands and settings I use almost on daily basis when working with .NET Core, the command line and Visual Studio Code. Checks Check installed CLI version: 1dotnet --version Show available templates: 1dotnet new Solutions Create a solution with the...

.NET Core, Code Analysis and StyleCop

So now that .NET Core and .NET Standard 2.0 have been released some of you may be migrating applications or even creating new ones with it. As you progress you are starting to worry about the quality of your code so what you want is to at least check your code against design and style guidelines don’t you? This post...

Step by step: .Net Core and Azure Search

Step by step: .Net Core and Azure Search is small introduction on how to connect to Azure Search, create and delete indexes, models, add documents and perform basic queries. Let’s go for it: Create an Azure Search service Create an Azure Search service in your Azure subscription, and get the Azure Search name and...