Quick tips Dotnet Executing assembly location in a Dotnet (core) single file app How to get Assembly location for modern .NET projects embedded in a single-file app.
Quick tips Dotnet Private Nuget feed in Docker .Net Core application Using public Nuget from Nuget.org is always easy, you just need internet connection. But when you need private Nuget feed it sometimes doesn’t want to work, especially in isolated Docker container.
Docker Dotnet Optimize Docker .NET Core project and docker-compose solution to reduce build image time Docker has built in great cache mechanism, but to be able to use it, you have to understand how it works. Let’s dive into it, to build .NET Core Docker images faster.
Docker Dotnet Sql Docker compose introduction - Dotnet core app composed with MySQL Database Introduction to docker-compose - basic aspects explained with .NET Core app and MySQL DB composed together.
Docker Dotnet Multi-project .net core solution in Docker image Creating Docker images from dotnet solution with project references is easy when you understand basics of Docker commands, but writing proper Dockerfile can be tricky for beginners.
Dotnet Fare (xeger) - generate string that matches regex pattern in C# Matching text using regex patterns is extremely useful. But sometimes we need to invert this process and create text which will match the regex. The solution has already been written.