Daniel Green

Results 10 comments of Daniel Green

> A few more observations: If I switch my local environment to Production (ASPNETCORE_ENVIRONMENT variable), then the problem goes away. I notice that when running in Production mode, the IHostEnvironment.WebRootFileProvider...

> great thanks for sharing that, but I'm still getting the error. what else have I to do to fix that? Are you running on net6.0 and have you updated...

@pranavkm Could this limitation be documented here please? https://docs.microsoft.com/en-us/aspnet/core/mvc/views/view-compilation

> public bool IsPrerendering => !contextAccessor.HttpContext?.Response.HasStarted ?? false; I like your approach @bcheung4589 but I would just query the use of `HttpContext` above, in light of the [docs](https://learn.microsoft.com/en-us/aspnet/core/blazor/security/?view=aspnetcore-8.0#ihttpcontextaccessorhttpcontext-in-razor-components). > [IHttpContextAccessor](https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.ihttpcontextaccessor)...

@kevin-brown Could this issue be reopened please, or should a new issue be filed?

@ajcvickers @bricelam @roji @ErikEJ Is there any indication when we might see a fix for this? It's not great for developers to release and promote this tooling when it's broken...

Is this change going be merged and released soon?

I've got something working, having changed the customization to use the following code: ```cs public override void Customize(IFixture fixture) { base.Customize(fixture); var config = new ConfigurationBuilder() .SetBasePath(Directory.GetCurrentDirectory()) .AddJsonFile(@"appsettings.json", false, false)...

Hi @aivascu you might be right. Although the error when constructing SqlConnection seems to relate to the connectionString argument, not the credential. `System.ArgumentException: Format of the initialization string does not...

I've also hit this issue when trying to login to an npm feed hosted on an internal ProGet server. ![npm-login-error](https://cloud.githubusercontent.com/assets/757038/25483589/6211287a-2b4e-11e7-9da0-68edc5983ba8.png) Then .npmrc contains: //10.0.0.12:81/npm/npm-ci/:_authToken=undefined If I login using npm adduser,...