.net core2.1 配置

本文详细介绍了ASP.NET Core中环境变量的配置与使用,包括Development、Staging和Production三种环境的区别,以及如何通过环境变量ASPNETCORE_ENVIRONMENT进行切换。同时,文章还提供了如何在不同环境中加载特定配置的方法,以及一些实用的链接资源。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ASPNETCORE_ENVIRONMENT

Development(开发)
Staging(预演)
Production(生产)

var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
.AddEnvironmentVariables();

 

  • IsDevelopment()
  • IsStaging()
  • IsProduction()
  • IsEnvironment()

Configuration = builder.Build();

var defaultTest = Configuration["Logging:LogLevel:Default"];

 

var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT"); var isDevelopment = environment == EnvironmentName.Development;

 

https://docs.microsoft.com/zh-tw/aspnet/core/fundamentals/environments?view=aspnetcore-2.1

 https://andrewlock.net/why-isnt-my-asp-net-core-environment-specific-configuration-loading/

https://dotnetcoretutorials.com/2017/05/03/environments-asp-net-core/

 https://stackoverflow.com/questions/46444981/setting-environment-variables-in-net-core-2-0

https://pascalnaber.wordpress.com/2017/11/29/handling-settings-and-environment-variables-of-your-net-core-2-application-hosted-in-a-docker-container-during-development-and-on-kubernetes-helm-to-the-resque/

 

export ASPNETCORE_ENVIRONMENT=development

http://www.cnblogs.com/xishuai/p/asp-net-core-set-hosting-environment-with-publish.html

https://blog.youkuaiyun.com/sD7O95O/article/details/78096359

 

https://stackexchange.github.io/StackExchange.Redis/Timeouts.html

 

How to configure this setting:

  • In ASP.NET, use the “minIoThreads” configuration setting under the <processModel> configuration element in machine.config. According to Microsoft, you can’t change this value per site by editing your web.config (even when you could do it in the past), so the value that you choose here is the value that all your .NET sites will use. Please note that you don’t need to add every property if you put autoConfig in false, just putting autoConfig=”false” and overriding the value is enough:
<processModel autoConfig="false" minIoThreads="250" /> 

Important Note: the value specified in this configuration element is a per-core setting. For example, if you have a 4 core machine and want your minIOThreads setting to be 200 at runtime, you would use <processModel minIoThreads="50"/>.

 

export ASPNETCORE_ENVIRONMENT=development

 

 [ServiceFilter(typeof(ValidateReCaptchaAttribute))]

 services.AddScoped<ValidateReCaptchaAttribute>();

 

Request.Cookies[".AspNetCore.Session"]

HttpContext.Session.Id

转载于:https://www.cnblogs.com/zwei1121/p/9792220.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值