IHostingEnvironment.ContentRootPath 是如何设置的?

How does IHostingEnvironment.ContentRootPath get set?

在我的 Azure Service Fabric Web API 项目中,我可以使用 Api.cs class 中的这段代码将我的 appsettings.json 文件添加到我的配置中:

    protected override IEnumerable<ServiceInstanceListener> CreateServiceInstanceListeners()
    {
        return new ServiceInstanceListener[]
        {
            new ServiceInstanceListener(serviceContext =>
                new KestrelCommunicationListener(serviceContext, "ServiceEndpoint", (url, listener) =>
                {
                    ServiceEventSource.Current.ServiceMessage(serviceContext, $"Starting Kestrel on {url}");

                    return new WebHostBuilder()
                                .UseKestrel()
                                .ConfigureAppConfiguration((builderContext, config) =>
                                {
                                        var env = builderContext.HostingEnvironment;
                                        config.SetBasePath(env.ContentRootPath)
                                            .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
                                            .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
                                            .AddEnvironmentVariables();
                                })
                                .ConfigureServices((hostingContext, services) => services
                                .AddSingleton<StatelessServiceContext>(serviceContext)
                                .AddApplicationInsightsTelemetry(hostingContext.Configuration))
                                .UseContentRoot(Directory.GetCurrentDirectory())
                                .UseStartup<Startup>()
                                .UseServiceFabricIntegration(listener, ServiceFabricIntegrationOptions.None)
                                .UseUrls(url)
                                .Build();
                }))
        };
    }

env.ContentRootPath 包含这个值:

C:\SfDevCluster\Data\_App\_Node_0\Abc.IntegrationType_App197\Abc.Integration.ApiPkg.Code.1.0.0

在这个文件夹中我可以看到 appsettings.json 个文件。

但是,在我的 Azure Service Fabric 无状态服务项目中,我的 Service.cs class:

中有这段代码
    protected override async Task RunAsync(CancellationToken cancellationToken)
    {
        Microsoft.AspNetCore.WebHost.CreateDefaultBuilder()
            .ConfigureAppConfiguration((builderContext, config) =>
            {
                var env = builderContext.HostingEnvironment;

                var appName = AppDomain.CurrentDomain.FriendlyName;
                var parentFolderPath = Directory.GetParent(env.ContentRootPath).FullName;
                var packageCodeFolderPath = Path.Combine(parentFolderPath, appName + "Pkg.Code.1.0.0");

                config.SetBasePath(packageCodeFolderPath)
                    .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
                    .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
                    .AddEnvironmentVariables();
            })
            .UseStartup<Startup>()
            .Build()
            .Run();
    }

此处 env.ContentRootPath 包含此值:

C:\SfDevCluster\Data\_App\_Node_0\Abc.Integration.OpticalType_App198\work

但是因为 appsettings.json 文件位于: C:\SfDevCluster\Data\_App\_Node_0\Abc.Integration.OpticalType_App198\Abc.Integration.Optical.ServicePkg.Code.1.0.0,

我不得不构建上面看到的 packageCodeFolderPath 变量。

这似乎不是一个非常优雅的解决方案,我担心 Pkg.Code.1.0.0 中的版本号可能会改变(如果那是版本号?)。

如何将 env.ContentRootPath 设置为包含 appsettings.json 文件的文件夹的路径?或者是否有更好的方法来访问这些文件?

我建议使用 serviceContext 属性 CodePackageActivationContext 来定位 SF work folder 并将其用作您的参考点。 (Environment.CurrentDirectory 的值在 1 节点和 5 节点集群上有所不同,因此它是不可靠的。)

所以使用: context.CodePackageActivationContext.WorkDirectory

CodePackageActivationContext也持有代码包version字符串(确实是版本定义)

在您的服务清单中,您应该将 WorkingFolder 设置为 CodePackage,以便将 ContentRootPath 设置为代码 Abc.Integration.Optical.ServicePkg.Code.1.0.0 而不是 work

即:

<EntryPoint>
  <ExeHost>
    <Program>myapp.exe</Program>
    <WorkingFolder>CodePackage</WorkingFolder>
  </ExeHost>
</EntryPoint>

检查文档 here

其他选项是从SF设置的环境变量中获取信息。看看这里:https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-environment-variables-reference

或者,使用 Loek 在他的回答中建议的 context.CodePackageActivationContext.WorkDirectory