Tatsuro Shibamura

Results 95 comments of Tatsuro Shibamura

We would like to change from virtual applications to virtual directories if we can guarantee that the change will not break existing deployments. We do not want to change the...

+1 This is very important because if Azure Functions Core Tools support for bookworm is delayed, it will not be possible to develop using .NET 8, only bookworm is released...

I'm facing the same issue. When I try to upload the `local.settings.json` configuration values to App Settings before deploying the Function App project, I get an error stating that `FUNCTIONS_WORKER_RUNTIME`...

We are currently using a Consumption Plan, so we cannot support VNET Integration, but we are planning to migrate to Flex Consumption in the future, so we expect to be...

I think the following definition achieves the same thing. ```csharp public class MyModel { [Display(Name = "MyParam")] [Range(1, 3)] [Required] public int MyParam { get; set; } = 2; }...

Since it uses the standard C# Validator, almost all Data Annotations classes can be used.

@justinyoo I tried the same route with the ASP.NET Core Web API with Swashbuckle, and it worked. Looking at the generated openapi definition, it seems that "*" should not be...

@justinyoo Thanks for the reply. I don't think the URL encoding of parameters is a Swagger UI issue, so I don't think it needs to be addressed, but I think...

I don't know much about CSR, so I'm using the default values generated by Key Vault, but I don't understand what will improve and what the impact will be with...

Thank you for the feedback. I understand the cause is that Key Vault's EKU includes Client Auth by default. While changing this default value is the simplest solution, I'm wondering...