.NET ASPIRE App fällt mit fehlenden Clipath- und DashboardPath -Fehler unter Linux fehl

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: .NET ASPIRE App fällt mit fehlenden Clipath- und DashboardPath -Fehler unter Linux fehl

by Guest » 05 Feb 2025, 13:09

Ich entwickle eine .NET 8 -Anwendung, die .NET Aspire for Orchestration verwendet. >

Code: Select all

dotnet run --project ./SomeCustomer.SomeApp.AppHost/SomeCustomer.SomeApp.AppHost.csproj
< /code>
... Dieser Fehler tritt auf ... < /p>
Building...
warn: Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer[9]
The ASP.NET Core developer certificate is only trusted by some clients. For information about trusting the ASP.NET Core developer certificate, see https://aka.ms/aspnet/https-trust-dev-cert
Unhandled exception. System.AggregateException: One or more errors occurred. (Property CliPath: The path to the DCP executable used for Aspire orchestration is required.; Property DashboardPath: The path to the Aspire Dashboard binaries is missing.)
---> Microsoft.Extensions.Options.OptionsValidationException: Property CliPath: The path to the DCP executable used for Aspire orchestration is required.; Property DashboardPath: The path to the Aspire Dashboard binaries is missing.
at Microsoft.Extensions.Options.OptionsFactory`1.Create(String name)
...
< /code>
Das .NET -Aspire ist installiert (dotnet workload install aspire
), aber die Anwendung kann nicht auf die Ressource zugreifen.>

Top