July 6, 2020

Nested .NET Core App settings in an ARM template

By |2020-07-06T18:09:53+00:00July 6th, 2020|Categories: ARM, ASP.NET Core, Azure, Azure DevOps, C#|

I was not able to find a post that succinctly demonstrated this, so I wanted to share my solution here. I was trying to deploy a .NET Core web application with some app settings inside an ARM template. The app settings are contained as an object with nested properties, like so: "AzureStorageConfig":{ "AccountName":"this-is-a-dummy-value", "AccountKey":"this-is-a-dummy-value", "ImageContainer":"this-is-a-dummy-value", [...]

January 29, 2019

Easily test your .NET Core Web API methods with Swagger UI

By |2019-01-29T15:29:14+00:00January 29th, 2019|Categories: ASP.NET Core, C#, Handy Tools/Utilities, Web API|

I'm starting to think that Swashbuckle and Swagger UI should be mandatory on all Web API applications going forward. I love this framework so much right now, so I wanted to make a very brief blog post about it. It's saved me so much time and throw away code. Recently I was working on a small [...]

Go to Top