David Fowler
David Fowler
Volume information doesn't show up anywhere in the dashboard. It should.
```xml net8.0 enable enable ``` ```C# using OpenTelemetry; using OpenTelemetry.Trace; var builder = WebApplication.CreateBuilder(args); builder.Logging.AddOpenTelemetry(); builder.Services.AddOpenTelemetry().UseOtlpExporter(); var app = builder.Build(); app.MapGet("/", () => "Hello World!"); app.Run(); ``` cc @CodeBlanch
https://github.com/dotnet/vscode-csharp/assets/95136/0a026967-f62d-44f9-9808-645fa050538a
It always injects the end brace even if one already exists: https://github.com/dotnet/vscode-csharp/assets/95136/d42481f1-6819-452d-acbf-8efc17045717
When you launch a console or .NET project in Visual Studio with F5 there's an external console window that pops up with the output (this can be configured to use...
I get this error randomly while using devkit and it breaks the solution explorer.
If you run azd infra synth and then you update the app model code, it's ignore when running azd commands (provision/up/deploy). This can be really confusing and we should do...
Today `azd up` will provision a container registry as part of the ACA environment. It should be possible to use a different container registry with the container apps environment. That...
Code is here https://github.com/davidfowl/EventGridDemo Follow up from https://github.com/Azure/azure-dev/issues/3839 ```C# var builder = DistributedApplication.CreateBuilder(args); var api = builder.AddProject("api") .WithExternalHttpEndpoints(); var eventGrid = builder.AddEventGridWebHook("grid") .WithWebhookUrl($"{api.GetEndpoint("https")}/hook"); builder.AddProject("publisher") .WithReference(eventGrid); builder.Build().Run(); ``` In this sample,...
## Background and Motivation There are scenarios 2 scenarios that aren't supported well: 1. Adding a parameter with a default value only used at runtime that doesn't come from configuration,...