I have a Blazor Server application with a set of custom environment variables, I am trying to set the environment into
DevelopmentLocal
DevelopmentLocal
on the
web.config
web.config
file, however It stays on the
Development
Development
environment
Program.cs
Program.cs
...Console.WriteLine($"This application is running on the environment: {app.Environment.EnvironmentName}");// This application is running on the environment: Development...
...Console.WriteLine($"This application is running on the environment: {app.Environment.EnvironmentName}");// This application is running on the environment: Development...