Jenkins does not support running of xUnit tests out of the box. So that you need to run it manually and import test results to Jenkins. This quick manual shows how
Development
How To: Publish your assembly to private NuGet repositoryHow To: Publish your assembly to private NuGet repository
This is quick guide to manage your NuGet package in your private server. Before going into steps with publishing a NuGet package you need to have prepared assembly. Also you
Transforming from DateTime to DateTimeOffsetTransforming from DateTime to DateTimeOffset
You want to transform your system from one state to another. The initial state is when DateTime is used everywhere. The target state is when DateTimeOffset is used everywhere. You

DateTime PitfallsDateTime Pitfalls
If you find some of these things in your application you should double check if your application works correctly with dates and times: Usages of non-UTC aligned date and time Usages
List of Time ZonesList of Time Zones
The list of all time zones present on PC (Windows 10 Home). This is what you’ll get with the operation TimeZoneInfo.GetSystemTimeZones() in C#.

How To: Running Specflow features with Selenium in JenkinsHow To: Running Specflow features with Selenium in Jenkins
This is a short guide how to run Specflow features which use Selenium for interaction with a web site. In our building environment these tests are running in Jenkins. Implementing this you’ll

Shifty Responsibility of Repository PatternShifty Responsibility of Repository Pattern
During a lot of discussions about the Repository Pattern I noticed that people are separated into two camps. For the purposes of the article I call them abstractionists and concretists. The difference

Dependency Injection Frameworks: configuration via codeDependency Injection Frameworks: configuration via code
Many times I was asking myself what’s better IoC container for this or that project. Their performance is the one side of choice. You can find the complete performance comparison here. Another side
How to test WebAPI with In-Memory HostingHow to test WebAPI with In-Memory Hosting
In most cases you want to have integration tests for your WebAPI, but don’t deploy it on IIS. There is an option which allows to skip IIS pipeline and work
How to extract domain from URLHow to extract domain from URL
You want to extract a domain from URL. The list of URLs to support might be as below. For this list you expect the domain sub.domain.com : sub.domain.com/folder?p1=v1 www.sub.domain.com/folder?p1=v1 http://sub.domain.com/folder?p1=v1 https://sub.domain.com/folder?p1=v1 https://www.sub.domain.com/folder?p1=v1