Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
48 views

Was trying to create a database (retmarkdb), but only datatabase "postgres" (with password 'retmark123') is created. // RetmarkApp.AppHost/AppHost.cs var builder = DistributedApplication....
Serjeq's user avatar
  • 1
1 vote
0 answers
64 views

I have a .NET 10 MAUI app configured with Aspire 13. When I start the Aspire project and the dashboard launches, I ensure that the emulator is running. Steps to reproduce Start Visual Studio Create a ...
James D's user avatar
  • 11
Best practices
0 votes
0 replies
30 views

I have a question with a setup of one of my components that relies heavily on JSInterop. The component contains a Google map and all of my data for initializing and displaying data on that map needs ...
GH DevOps's user avatar
  • 512
-1 votes
1 answer
160 views

I’m working with Aspire in a .NET 10 RC2 project. When I run: aspire publish it logs that it’s “creating Docker image”, but no Docker image is actually produced. I have ran it with --debug and indeed ...
sir's user avatar
  • 9
-1 votes
1 answer
79 views

I’m using .NET Aspire to orchestrate my services, and everything is deployed to Azure Container Apps. By default for replication, Container Apps seem to use HTTP scaler with a concurrency target of 10 ...
Markiian Hoinets's user avatar
0 votes
1 answer
142 views

I have an Aspire project that runs RabbitMQ, MongoDB, and PostgreSQL in Docker containers. My AppHost project defines them like this: var rabbitMQ = builder.AddRabbitMQ("rabbitmq") ....
Hidr4's user avatar
  • 23
0 votes
1 answer
113 views

I am using Aspire.Hosting.Testing to setup integration testing. I have already succeed getting sql server to work, but blob storage is still an issue. I need to be able to pass the connectionstring of ...
Davy's user avatar
  • 6,451
0 votes
0 answers
44 views

I am using Aspire and have two services, we'll call them api, and mockapi. I have the two setup as follows with Aspire var mockapi = builder.AddProject<Projects.MockApi>("mockapi"); ...
Chris Brown's user avatar
2 votes
1 answer
204 views

I'm trying to increase my retry duration from the standard 10 seconds in my Blazor application, but the resilience handler doesn't seem to be working. I've tried both of the setups below but my Http ...
GH DevOps's user avatar
  • 512
1 vote
0 answers
96 views

I am trying to generate EF Migrations in a .NET Aspire project. I am following the migration example in the documentation. Everything works well with this: builder.AddSqlServerDbContext<...
acmoune's user avatar
  • 3,473
0 votes
0 answers
29 views

I've configured my Web project to work with my computer's IP (192.168.0.2) creating certificate for https etc. If I use https://192.168.0.2:7058/ all works fine builder.WebHost.ConfigureKestrel(...
Denis De Pauli's user avatar
0 votes
1 answer
129 views

I have a generic .NET Blazor web application with Aspire enabled and I'm trying to setup SignalR to use Redis as backplane. The Redis is running in a docker/podman container, and Aspire dashboard ...
Alec's user avatar
  • 1
2 votes
0 answers
156 views

Currently my Aspire AppHost looks like this var cache = builder.AddRedis("cache"); // Add Key Vault access var keyVaultUri = builder.Configuration["KeyVault:Uri"]; if (string....
Robert Davis's user avatar
  • 2,285
1 vote
0 answers
57 views

I've created a standard ASP.NET Core 9 Aspire application with all projects. All work fine till I use localhost as endpoint for my web app, but obviously, I want to change to local lan IP (192.168.0.2 ...
Denis De Pauli's user avatar
1 vote
1 answer
69 views

I am working on an application as part of a demo project of things I have learned over the years. This one combines Aspire Orchestration with a Blazor front. Sofar things have been a struggle learning ...
Zero Serenity's user avatar
1 vote
1 answer
392 views

I use the sample project of .NET Aspire, support ticket API, locally it runs great only then I deploy the components using azd up, the deployment also works great. The published API says it can be ...
Mptje's user avatar
  • 1,471
1 vote
0 answers
309 views

I am running .NET Aspire 9.3 inside Visual Studio 2022 v2 on Windows 11 with WSL (Ubuntu) and Docker installed. However, Aspire defaults to using Docker Desktop, and I want it to use WSL's Docker ...
Joseph Wambura's user avatar
0 votes
0 answers
56 views

Background I have a dotnet aspire app that is giving me this error message: Aspire.Hosting.Dcp.dcpctrl.ExecutableReconciler[0] could not remove process's standard error file {"Executable&...
sav's user avatar
  • 2,170
1 vote
1 answer
295 views

I am trying to use the Aspire function apps. builder.AddAzureFunctionsProject<MyProj>("myproj"); There is a WithHostStorage() method which I would like to point at an already running ...
Dilbert's user avatar
  • 65
0 votes
1 answer
120 views

I have an Aspire project in which I've changed the DisplayText of an endpoint using: .WithUrlForEndpoint("https", url => url.DisplayText = "Blazor") When running locally, the ...
Jasper Kent's user avatar
  • 3,696
1 vote
1 answer
476 views

I have a SQL Server instance running in an Azure Container App, created using .NET Aspire, and I'm trying to connect to it using SQL Server Management Studio (SSMS). Here are the details of my setup: ...
SDG6's user avatar
  • 103
0 votes
0 answers
255 views

In hooks, inside beforetestrun method trying to launch aspire dashboard but failing to do it. purpose of doing it is to check logs for all resources while running tests apphost > program.cs ...
AbdulQASDET's user avatar
1 vote
1 answer
378 views

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 ...
Jason Eades's user avatar
  • 1,827
1 vote
1 answer
126 views

I'm trying to set up a new project using Orleans 9 with Aspire 9, using SQL Server for clustering. I'm having trouble properly configuring Orleans clustering provider in the AppHost. Here's my current ...
Igor's user avatar
  • 319
1 vote
0 answers
153 views

I am discovering .NET Aspire and trying to migrate a solution to it. In the solution, I have several Worker applications that are using the HostApplicationBuilder with HostedServices. Initially these ...
Sam Vanhoutte's user avatar