From c6153672b8c52e061b14ae55b55421f7cb78b61a Mon Sep 17 00:00:00 2001 From: v-rodudi Date: Tue, 28 Aug 2018 16:54:20 +0300 Subject: [PATCH] Reverted path to configuration.json for API gateways. --- src/ApiGateways/ApiGw-Base/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiGateways/ApiGw-Base/Program.cs b/src/ApiGateways/ApiGw-Base/Program.cs index 60da7d163..effd5684e 100644 --- a/src/ApiGateways/ApiGw-Base/Program.cs +++ b/src/ApiGateways/ApiGw-Base/Program.cs @@ -22,7 +22,7 @@ namespace OcelotApiGw { IWebHostBuilder builder = WebHost.CreateDefaultBuilder(args); builder.ConfigureServices(s => s.AddSingleton(builder)) - .ConfigureAppConfiguration(ic => ic.AddJsonFile("appsettings.json")) + .ConfigureAppConfiguration(ic => ic.AddJsonFile(Path.Combine("configuration", "configuration.json"))) .UseStartup(); IWebHost host = builder.Build(); return host;