我写了一个ASP.Net Core 2.2应用程序。在开发机器上运行时,一切正常。
我已将其作为独立的应用程序发布并部署到我的登台计算机上。
TargetFramework是netcoreapp2.2。 RuntimeIdentifier是win-x64。而环境正在分阶段。
通过命令行运行应用程序进行某些测试时,它似乎没有读取appsettings.staging.json或任何appsettings.json文件。
出于测试目的,我将Startup.cs的配置方法设置如下:
public void Configure( IApplicationBuilder app , IHostingEnvironment env )
{
if( env.IsDevelopment( ) )
{
app.UseDeveloperExceptionPage( );
}
else
{
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts( );
}
app.UseHttpsRedirection( );
Console.WriteLine( $"Chris Environment: {env.EnvironmentName}" );
Console.WriteLine( $"Chris IsStaging: {env.IsStaging( )}" );
Console.WriteLine( $"Chris ConnectionString: {Configuration.GetConnectionString( "DefaultConnection" )}" );
Console.WriteLine( $"Chris LoggingAPI: {Configuration["LoggingAPIURL"]}" );
foreach( var test in Configuration.AsEnumerable( ) )
{
var key = test.Key;
var val = test.Value;
Console.WriteLine( $"Chris Key: {key} - Value: {val}" );
}
app.UseMvc( b =>
{
b.Select( ).Expand( ).Filter( ).OrderBy( ).MaxTop( 100 ).Count( );
b.MapODataServiceRoute( "default" , "api" , EdmModelBuilder.GetEdmModel( app.ApplicationServices ) );
} );
}
我通过在命令行中输入以下内容来运行应用程序:path / To / My / App.exe --environment Staging
写出的结果是: 克里斯环境:分期 Chirs IsStaging:真实 克里斯·ConnectionString: 克里斯LoggingAPI:
连接字符串和LoggingAPI留为空白。循环返回一堆值,但所有appsettings.json文件中都没有。
我的appsettings.json文件如下:
{
"ConnectionStrings": {
"DefaultConnection": "Some ConnectionString"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"LoggingAPIURL": "SomeURL"
}
我已经验证了appsetting.json文件在服务器上。
有人可以向我解释发生了什么事吗?
答案 0 :(得分:1)
用于WebHostBuilder
配置的基本路径设置为IHostingEvironment.ContentRootPath
(source):
var builder = new ConfigurationBuilder()
.SetBasePath(_hostingEnvironment.ContentRootPath)
使用WebHostBuilder.CreateDefaultBuilder
(这是项目模板生成的默认方法)时,可以使用IHostingEvironment.ContentRootPath
(source)来设置Directory.GetCurrentDirectory()
:
builder.UseContentRoot(Directory.GetCurrentDirectory());
这意味着,当尝试定位appsettings.json
和appsettings.[Environment].json
时,将使用工作目录,而不一定是应用程序的目录。在您的示例中,您正在从其自己的目录外部运行该应用程序,这意味着找不到.json
文件。
要解决此问题,您可以先将cd
插入path/To/My
,然后从那里运行App.exe
。另外,如果您要将App.exe
作为服务运行,则可以将app的工作目录设置为与app本身相同的目录。