6 questions
1
vote
1
answer
378
views
Specifying Ingress in .NET Aspire Deployment using azd
I have a Blazor web application and several API's that I'm orchestrating with Aspire and trying to deploy to Azure Container apps using Azure Developer CLI - azd (v1.14.0)
I'm following this Microsoft ...
0
votes
0
answers
296
views
Update SQL connection string when deploying updates to .NET Aspire app
I've deployed a .NET Aspire app to Azure using the azd up cmdlet. During the deployment step, a connection string was requested to an Azure SQL database. The app and its connection to the database ...
2
votes
1
answer
793
views
Azure "azd up" removes custom domain from deployed Containerapp. How can I keep it?
I have a very simple dotnet core webapp that I want to deploy to azure containerapps with Aspire and azd
This is my AppHost's Program.cs
using Aspire.Hosting;
var builder = DistributedApplication....