You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
what would the AppHost look like for something like this?
varbuilder=DistributedApplication.CreateBuilder(args);varwebapi=builder.AddProject<Projects.TodoListWebApi>("MyApi");varconsoleApp=builder.AddProject<Projects.DaemonApp>("consoleapp").WithReference(webapi)// as usual?
builder.Build().Run();
Do I need to change the configuration in the appsettings.json to be:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How would I configure an AppHost for a service that calls another service using Microsoft identity platform ?
consider the configuration https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/blob/master/6-Call-OwnApi-ManagedIdentity/daemon-console/appsettings.json
and the application code https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/blob/master/6-Call-OwnApi-ManagedIdentity/daemon-console/Program.cs
what would the AppHost look like for something like this?
Do I need to change the configuration in the
appsettings.json
to be:Beta Was this translation helpful? Give feedback.
All reactions