I have created a new .net web api project.
There are 2 json settings file - 1 is for dev and other is for prod.
I add key1 to dev json file and add key2 to prod json file.
In my program.cs I have following code:
builder.Configuration["key1"]
builder.Configuration["key2"]
Even though I have run the project via visual studio code, why is it loading the value from the prod json file?
