2016-10-10 76 views

回答

16

您可以通過環境變量ASPNETCORE_URLS

MacOS的配置吧:

export ASPNETCORE_URLS=http://localhost:5050 

窗口:

set ASPNETCORE_URLS=http://localhost:5050 

或添加這launch.json

"env": { 
    "ASPNETCORE_URLS": "http://localhost:5050" 
    } 

如果您不想指定主機名,您可以使用*代替

http://*:5050 
相關問題