Our builds started failing today and it’s Microsoft Servicing Tuesday even though it’s Wednesday over here.We are using ubuntu-latest in almost all our builds and started seeing the […]
In my previous post I wrote about Migrating Azure Durable Function App to Use Durable Task Scheduler: Running Locally. And in this post, let’s see how […]
Durable Task Scheduler (DTS) is the latest addition to Azure Durable Functions. The public preview is announced a couple of weeks ago, and you can find […]
If you are using Azure DevOps classic releases, you might have noticed, that we still don’t have Runtime stack support for DOTNET-ISOLATED|9.0 in Azure Functions Deploy task. Azure Functions Deploy […]
In this post let’s see how we can configure Authentication in an ASP.NET Core Web API with Azure AD B2C and most importantly using explicit configuration. The […]
Recently saw an issue in one of our applications that Configures JsonSerializerOptions as part of the builder (FunctionsApplicationBuilder, WebApplicationBuilder etc). To give a minimal example, say we want to configure JsonSerializerOptions.WriteIndented to true (in configuration […]
In this post let’s have a look at another feature in EF Core 9.0. Consider the following code example. public record Employee{ public int Id { get; set; } public string Name { get; set; } private class EmployeeConfiguration :
Azure Document Intelligence client library for .NET, Azure.AI.DocumentIntelligence 1.0.0 was released few weeks ago with some significant refactoring to existing beta packages, and it has some breaking changes. […]
In this post, let’s have a look at a breaking change in EF Core 9.0 related to migration idempotent scripts. Consider the following scenario. Say we […]