Reading appsetting-test.json file in asp.net core 5 test project
I have a test project with Asp.net core 5 and trying to read the appsetting values. Created an appsetting.test.json file in the test project with below configuration { "baseUrl": "https://xxxxx.io/", "user": { "username": "[email protected]", "password": "xxxxxxx@1xx7" } } Created a…