Rider – Server is not specified
Rider – Server is not specified

Problem I use JetBrains Rider as my primary IDE for developing applications. Currently, I’m working on an application that I plan to deploy using Docker. However, I encountered a small issue when attempting to run the Dockerfile in Rider. The IDE displayed the following error message: "Error running ‘MyProject’ – Server is not specified." Solution... » read more

Testing SignalR connection persistency
Testing SignalR connection persistency

Introduction As a developer, testing network conditions and connection persistence can be a challenge. Sometimes, network transportation isn’t always reliable, and it’s not easy to simulate a poor network connection during testing. Fortunately, I recently discovered clumsy, a tool that made it easy for me to test my SignalR connection persistence in a C# project.... » read more

Using Azure DevOps private nuget feed
Using Azure DevOps private nuget feed

Intro I decided to write this post for anyone struggling to setup and use private nuget feed from Azure DevOps, because in my opinion the microsoft documentation is little bit confusing in this case. Prerequisities nuget – https://www.nuget.org/downloads Creating nuget feed Creating new feed is straigt forward. Open Azure DevOps, and select Artifacts in side... » read more

Updating Seq in docker
Updating Seq in docker

Intro Today I want to share quick manual on how to update Seq instance running in doker, to the latest version. What is Seq For those who don’t know, Seq is great server app for collecting log messages. It works well with Serilog which is excelent logging framework from same author. Using these two tools... » read more

App_offline.htm with progress?
App_offline.htm with progress?

Intro So, recently I had to redeploy new ASP.NET Core app few times and I don\’t want the user to stare at some ugly error page. I want something better, some nice page sayng website is under maintenance, and it would be nice if there would be progress of that operation. Solution My first try... » read more

Azure Pipeline for private repository in organization
Azure Pipeline for private repository in organization

About If you need to setup Azure Devops Pipeline for private repository that is under organization then keep reading… How to I had lot of trouble setting up that pipeline, I tryed to setup different Service connections, GitHub connections, but no luck. Azure devops seemed that it’s missing some access rights to see my private... » read more