Containerizing Python Durable Functions: A Step-by-Step Guide for Docker and AKSAzure Functions is a powerful serverless compute platform, and Azure App Service handles a lot of the underlying configuration for you out of the box. However, there are scenarios where you may want tApr 7, 2026·12 min read
How to Disable Azure Functions for Local and Azure CloudWhen working with Azure Functions, you often have multiple functions as part of a single function app. When debugging or running the function app locally, all the associated functions start and run together. However, during debugging, you may want to...May 17, 2023·2 min read
Azure Timer Function: How to Force Immediate Execution with Manual TriggeringAzure Functions is a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs. Azure Functions provide a powerful way to execute code in response to various triggers, such as a file being uploaded to blo...May 9, 2023·3 min read
Azure DevOps Pull Request build validation pipeline for .Net 5 projectWhen working in teams, we always want to ensure that any new PR (Pull Request) doesn't break the main build pipeline, deploy broken code or cause unit test cases to fail. We never want the PR to be merged to the master/main branch and then revert it ...May 7, 2021·5 min read
Problem Details - The right way to specify errors in Web API responsesThe need for Problem Details Often when you are developing REST APIs, one of the tough conversations to have with the consumers of your API (web client, mobile app, other 3rd parties, etc.) is defining the way your API would specify errors. Now, this...Mar 22, 2021·8 min read
How to Dockerize your ASP.NET Core app directly from Visual StudioIn this article we will see how to add docker support to ASP.NET core app directly from Visual Studio with just 3 Clicks without manually creating or writing any code to Dockerfile. Navigate to the Solution Explorer of your project and Right-click ...Mar 7, 2021·2 min read
10 Exception handling best practices in C#Writing software is a complex task, and it's quite common to see applications crash due to bad code, bad user input, unavailable resources or unexpected conditions at runtime, and so on. And when this happens, we say an exception has occurred that ca...Mar 4, 2021·12 min read