.Net Core WebApi文件配置内容(转)

ASP.NET Core launchsettings.json 文件

  • 位置:项目根文件夹的“Properties”文件夹中
  • 使用:从 Visual Studio 或使用.NET Core CLI 运行此 ASP.NET Core 项目时,将使用此文件中的设置。
  • 注意:此文件仅用于本地开发环境,若是发布和部署应用程序时使用某些独立的设置,请将它们存储在 appsettings.json 文件中

具体配置

 1 {
 2   "$schema": "http://json.schemastore.org/launchsettings.json",
 3   "iisSettings": {
 4     "windowsAuthentication": false,
 5     "anonymousAuthentication": true,
 6     "iisExpress": {
 7       "applicationUrl": "http://localhost:57596",
 8       "sslPort": 44392
 9     }
10   },
11   "profiles": {
12     "IIS Express": {
13       "commandName": "IISExpress",
14       "launchBrowser": true,
15       "launchUrl": "weatherforecast",
16       "environmentVariables": {
17         "ASPNETCORE_ENVIRONMENT": "Development"
18       }
19     },
20     "WebApiTest": {
21       "commandName": "Project",
22       "launchBrowser": true,
23       "launchUrl": "weatherforecast",
24       "applicationUrl": "https://localhost:5001;http://localhost:5000",
25       "environmentVariables": {
26         "ASPNETCORE_ENVIRONMENT": "Development"
27       }
28     }
29   }
30 }

以上我们有两个配置项
IIS Express 和WebApiTest

当我们通过按CTRL + F5或只是F5从 Visual Studio 运行项目时。 默认情况下,使用调用配置文件名称"commandName": "IISExpress",。 另外一种情况,如果我们使用.NET Core CLI(dotnet run)运行项目,则使用带有"commandName": "Project",的配置文件 。

我们可以通过单击 Visual Studio 中的下拉列表来更改要使用的配置文件中 .commandName 属性,修改默认设置。

.Net Core WebApi文件配置内容(转)

通过 GUI 来设置
  • 项目--属性--调试
    .Net Core WebApi文件配置内容(转)

使用 GUI 我们可以更改launchSettings.json文件中的设置。

注意,环境变量“ASPNETCORE_ENVIRONMENT”设置的默认设置为“Development”。

还可以添加新的环境变量。这些环境变量在我们的 Asp.Net Core 应用程序中都可用,我们可以包含根据这些环境变量的值有条件地执行的代码。
    • 参考Startup.cs文件中的Configure()方法中的以下代码
      1 public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
      2         {
      3             if (env.IsDevelopment())
      4             {
      5                 app.UseDeveloperExceptionPage();
      6             }
      7 
      8            
      9         }
上一篇:Neither BindingResult nor plain target object for bean name


下一篇:C#动态创建的LinkBut​​ton命令事件处理程序