Mitch Denny
Mitch Denny
I think we should probably plan on needing to do this in `azd`. At this point in time the spike on generating the container app resources inside Aspire.Hosting.Azure is just...
I noticed that we now have abstract static methods on interfaces in C#11 (non-preview). I'm wondering whether that means we don't need this analyzer anymore, or perhaps there is more...
Hrm, it looks like we have ```IParsable``` in ```System.Runtime``` with an almost identical signature: ```csharp public interface IParsable { TSelf Parse(string s, IFormatProvider? provider); bool TryParse(string? s, IFormatProvider? provider, out...
There is a possible ambiguity here that we need to deal with. Consider the following code: ```csharp var builder = WebApplication.CreateBuilder(args); builder.Services.AddScoped(); var app = builder.Build(); app.MapPost("/", (MyService myService) =>...
I'm picking up on the nuance of what you are saying ;) My PR #45286 achieves this for the parsing scenario because it checks the signature on the ```TryParse``` method...
/cc @davidfowl
I am wondering whether it is necessary to specify the launch profile here or not. When Aspire launches a child service project, that service project "inherits" the launch profile that...
I would argue its better to have your launch profiles aligned (in terms of their name) across app host and service projects.
Can you still repro this issue? There was an issue with launch profiles that may have impacted you.