Gated Release

Automated releases of software are great but how can we add an element of feedback so only good releases go live. I have been using Azure DevOps to release my PwnedPass android app to the Google Play Store for a while now. There are options to deploy to the alpha, Beta or Production tracks and even to set % of users to...

Documenting your API

So you have created a super API that does something amazing. How do you document it so people will use it? One way of easily documenting your API is to install the Swashbuckle package. Install-Package Swashbuckle.AspNetCore Install-Package Swashbuckle.AspNetCore.Swagger Then in you startup.cs add the following lines...