David Fowler

Results 147 issues of David Fowler

Volume information doesn't show up anywhere in the dashboard. It should.

area-dashboard

```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

Bug
Needs Investigation

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...

Feature Request
Debugger

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...

aspire
fit-n-finish

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...

feature
aspire

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,...

enhancement
core
aspire

## 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,...

area-app-model