committed by
GitHub
2 changed files with 25 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using Microsoft.Extensions.Hosting; |
|||
|
|||
namespace LINGYUN.MicroService.Internal.Gateway; |
|||
|
|||
public static class AbpHostingHostBuilderExtensions |
|||
{ |
|||
public const string AppYarpJsonPath = "yarp.json"; |
|||
public static IHostBuilder AddYarpJson( |
|||
this IHostBuilder hostBuilder, |
|||
bool optional = true, |
|||
bool reloadOnChange = true, |
|||
string path = AppYarpJsonPath) |
|||
{ |
|||
return hostBuilder.ConfigureAppConfiguration((_, builder) => |
|||
{ |
|||
builder.AddJsonFile( |
|||
path: AppYarpJsonPath, |
|||
optional: optional, |
|||
reloadOnChange: reloadOnChange |
|||
); |
|||
}); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue