From 77bec47ea37a6046d6220a35969e56a712acd3d4 Mon Sep 17 00:00:00 2001 From: v-rodudi Date: Mon, 27 Aug 2018 16:20:49 +0300 Subject: [PATCH] Removed redundant Path.Combine(). --- 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 010e871cd..60da7d163 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(Path.Combine("appsettings.json"))) + .ConfigureAppConfiguration(ic => ic.AddJsonFile("appsettings.json")) .UseStartup(); IWebHost host = builder.Build(); return host;