skip to Main Content

Ubuntu 22.04 updates broke dot net core 7.0

On 3 running Ubuntu servers... I did updates and now Supervisor crashes. tail /var/log/PHCAdmin.err.log: .NET location: /usr/lib/dotnet/ No frameworks were found. Learn about framework resolution: https://aka.ms/dotnet/app-launch-failed To install missing framework, download:https://aka.ms/dotnet-core-applaunch?framework=Microsoft.AspNetCore.App&framework_version=7.0.0&arch=x64&rid=ubuntu.22.04-x64

VIEW QUESTION

Why does Postman show a sign-in page instead of ‘hello’ when calling a .NET API on Azure?

instead of returning hello it requires a sign in. I have tried to pass tokens etc. this works fine in the browser[cannot seem to replicate openID connect auth flow] services.AddMicrosoftIdentityWebAppAuthentication(Configuration) .EnableTokenAcquisitionToCallDownstreamApi() .AddMicrosoftGraph(options => { Configuration.Bind("AzureAd", options); options.Scopes = AppSettings.GetScopes(); })…

VIEW QUESTION
Back To Top
Search