从Mac上的命令行运行ASP.NET 5应用程序时是否使用launchSettings.json? [英] Is launchSettings.json used when running ASP.NET 5 apps from the command line on Mac?

查看:123
本文介绍了从Mac上的命令行运行ASP.NET 5应用程序时是否使用launchSettings.json?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Mac上的Visual Studio代码开发ASP.NET 5 Web API应用程序.我手动修改了Properties/launchSettings.json文件,以使用ASPNET_ENV环境变量将所有配置文件的环境设置为Staging:

但是,当我在Mac终端中运行dnx web以启动应用程序时,我仍然得到Production环境:

如果在Mac上使用Visual Studio Code,可以使用launchSettings.json指定环境变量(以及环境类型)吗?还是特定于完整的Visual Studio?

ASP.NET 5文档launchSettings.json可以建议用于注入环境变量.但是,此SO讨论建议通过命令传递它们./p>

解决方案

LaunchSettings.json严格来说是VS概念.在其他情况下,您必须将环境变量配置为以下命令:

要运行标准命令行,请使用:

set ASPNET_ENV=Development

dnx web

对于Powershell,请使用:

$env:ASPNET_ENV='Development'

dnx web

更短版本: dnx web ASPNET_ENV=Development

I am developing an ASP.NET 5 Web API app using Visual Studio code on Mac. I manually modified my Properties/launchSettings.json file to set environment to Staging for all profiles using ASPNET_ENV environment variable:

However, when I run dnx web in Mac terminal to start the app, I still get Production environment:

Can I use launchSettings.json to specify environment variables (and, thus, environment types) if I use Visual Studio Code on Mac? Or is it specific to full Visual Studio?

ASP.NET 5 docs suggest that launchSettings.json can be used to inject environment variables. However, this SO discussion suggests passing them through commands.

解决方案

LaunchSettings.json is strictly a VS concept. In other cases, you will have to configure environment variables as commands below:

For standard command line run, use:

set ASPNET_ENV=Development

dnx web

For powershell, use:

$env:ASPNET_ENV='Development'

dnx web

Shorter version: dnx web ASPNET_ENV=Development

这篇关于从Mac上的命令行运行ASP.NET 5应用程序时是否使用launchSettings.json?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆