如何手动将IhostingEnvironment env设置为开发?我想使用C#代码来执行此操作,而不是命令行。
谢谢,
public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder();
if (env.IsDevelopment())
{
答案 0 :(得分:1)
您可以将env.EnvironmentName设置为" Development"在启动方法中。
error: SyntaxError: Unexpected token K in JSON at position 0 at JSON.parse (<anonymous>) at XMLHttp…, text: "Kommen wir nun einmal zu einigen Hilfsmitteln, mit… das
如果你在here(github repo)看到public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder();
env.EnvironmentName = "Development"; // <- Set the EnvironmentName to "Development"
if (env.IsDevelopment())
{
方法的实现,你会发现它基于IsDevelopment
的字符串比较操作。
EnvironmentName