This tag contains all of my blog posts that directly concern Microsoft Azure.
But what is Microsoft Azure? Microsoft themselves describe it like this:
Microsoft Azure is an ever-expanding set of cloud services to help your organization meet your business challenges. It’s the freedom to build, manage, and deploy applications on a massive, global network using your favorite tools and frameworks. (https://azure.microsoft.com/en-ca/overview/what-is-azure)
Marketing talk aside, Azure offers developers a way to get going fast, and concentrate on the functionality and added value instead of worrying about the infrastructure. Well, worrying about most of it anyway.
For IT Pros, it offers a new can of worms, a huge set of tools to squash those worms, and opportunities to offer a lot of value to their organizations.
For business people, Azure offers big potential savings. And the blockchain. And machine learning. And IoT, of course. It’s the hybrid cloud solution for your modern, blockchain-backed, machine learning -powered workloads running on the intelligent edge.
Does that sound good to you? No? Well, scratch the last paragraph – it’s true, but not as bad as it sounds!
Sometimes, you need to change the hosting model (or tier) for your resources on Azure. Maybe you’ve outgrown whatever you’ve originally selected, maybe you’ve got too much cash on your hands, or maybe you’re like me, and you get absolutely and completely fed up with the cold starts for your…Continue reading How to change Azure Functions from Consumption to Premium Elastic plan?
Ah, one more on the related topics of different configurations for your Azure Function apps. In this article, I will describe how you can configure the Entity Framework Core database context to be injected into your Azure Functions App. In my experience, this is a very typical and often-needed model…Continue reading How to inject EF Core DbContext in an Azure Function
This article explains one easy way for you to improve the performance and uptime of your Azure App Service. I’ll explain a simple but kind-of-hidden and surprisingly badly documented feature – Azure App Service Local Cache, that is – which might make a huge difference. It sure did for me!…Continue reading Enabling local cache for an Azure App Service
This article describes a curious fix I found to an issue where Application Insights (seemingly) crashes your Azure App Service, leaving behind interesting, yet non-descriptive errors in the Application Event Logs. The actual symptoms might be your Azure app service just timing out with no errors being surfaced on the…Continue reading How to fix weird “Production Breakpoints” errors in an Azure App Service?
Yikes – ever ran into this error after deploying your ASP.NET Core web application to an Azure App Service? Yeah, me too. And when it’s a production deployment, and the error didn’t happen in test/QA environment, that’s even more fun. This article describes a couple of ways to fix it,…Continue reading How to fix “HTTP Error 500.32 – ANCM Failed to Load dll”
This article will briefly explain the different NuGet package versioning schemes – both automatic and manual – available. Then we’ll take a look at how to implement a nifty, and quite frankly, downright elegant automatic versioning scheme for your NuGet packages. Okay – returning from quite a trip down another…Continue reading Fun with Azure DevOps NuGet package versioning!
So, another interesting issue I ran into when developing Azure Functions locally. What an endless bag of funsies! 😁 This time, the issue was simple but infuriating – my Azure Functions host would just silently close when debugging: none of the breakpoints would be hit, and no information would be…Continue reading Azure Functions host quits with “The system cannot find the file specified”