Published on30 June 2020Install dotnet global tool with private NuGet feed.NETDockerIn this post I show how to solve a 401 Unauthorised error while installing a .NET Global Tool and you have a private NuGet feed.
Published on23 June 2020Docker build with private NuGet feed in Azure Artifacts.NETDockerIn this post I describe how to do a NuGet restore from a private nuget feed within a docker container.
Published on19 April 2019Persist the azure cli docker container credentialsAzureDockerDocker for the Azure-Cli makes updating simpler. I show how you can stop the need to login every time by saving your credentials.
Published on7 March 2017Command Pattern in Web API2 with MediatR and Ninject.NETIn this post I investigate how to use the Command Pattern in Web API 2 with MediatR and Ninject.
Published on21 February 2016Convert unix epoch time to DateTime in C#.NETI recently had to convert unix epoch time to DateTime and like the rest of the world turned to stackoverflow. The top answer is a very simple solution of adding the unix time, which is in milliseconds, to a DateTime of 1/1/1970.