Mitch Denny

Results 222 comments of Mitch Denny
trafficstars

At the moment don't use the 9.0 packages for Aspire. As some point closer to .NET 9.0 GA we'll start producing 9.0 previews again which will be based on the...

The split is merged so this PR will need to react to that @vicancy

This is looking pretty good. General feedback is about making sure you put some good examples in the `///` docs just to make it easy for folks.

One more thing. What is the story here around the .NET client side of this experience? If someone wants to use WebPubSub in a S2S scenario, do we want any...

@eerhardt wanted to get your input here around the keyed DI injection of the client where you might have a single webpubsub resource but multiple hubs. Should we be providing...

Could you provide a bit more detail about your setup. What is in your apphost?

I noticed that you are saying that you are using `Aspire.Azure.Security.KeyVault` and `Aspire.Microsoft.EntityFrameworkCore.SqlServer` but you don't have any calls to `AddAzureKeyVault(...)` or `AddSqlServer(...)` in your AppHost. Does this mean that...

For a pre-existing database you should be using the following: ```csharp var db = builder.AddConnectionString("preexisting"); ``` Then for your user secrets you want to add one for `ConnectionStrings:preexisting` with the...

@mercedesyenzzz did this solve the issue for you?