Paul Fisher

Results 12 comments of Paul Fisher

@jmprieur : I did not, but looking at it now. I was not using containers, but -- is ARC for App Services creating a container automagically in ARC when publishing...

@jmprieur : That has no effect, which makes sense since the write up seems to imply, "fixed in .net Core 3.0". The only oddity I see, is that when I...

That has no effect. Just so you can double check me.... ``` public void ConfigureServices(IServiceCollection services) { var initialScopes = Configuration.GetValue("DownstreamApi:Scopes")?.Split(' '); services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAd")) .EnableTokenAcquisitionToCallDownstreamApi(initialScopes) .AddMicrosoftGraph(Configuration.GetSection("DownstreamApi")) .AddInMemoryTokenCaches(); services.AddControllersWithViews() .AddMicrosoftIdentityUI(); services.AddAuthorization(options...

I also tried it only setting the environment variable, but making no other changes. That had no effect, either.

When I do this -- and I put the env variable set as the very first thing in main, there is no change. I did get logging working. I never...

I can't seem to get the x-forward-proto header to display, so I went back to the actual linux app service, which runs correctly and don't see it there either. I...

So for .Net 6 will this functionality be available for all c# functions or only the isolated process functions?

The authentication in progress section of the above, was supposed to be the xaml code from the razor page, the markup is too smart for it's own good. I changed...