解决 dotnet core 1.x 命令行(cli) 下运行路径错误_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 解决 dotnet core 1.x 命令行(cli) 下运行路径错误

解决 dotnet core 1.x 命令行(cli) 下运行路径错误

 2017/9/11 13:08:55  wuball  程序员俱乐部  我要评论(0)
  • 摘要:环境:Windows10,VisualStudio2017centos7,nginx,supervisor,dotnetcore1.1问题:在Linux配置supervisor时,如下命令运行项目会出现各种路径问题,可能涉及一个workdir的概念;Windows同样适用。只能在项目的当前目录运行dotnet才可正常。command=dotnet/home/wwwroot/www.automan.com/automan.dll解决:command=/bin/bash
  • 标签:解决 net 运行 命令 错误

环境:

Windows 10,Visual Studio 2017

centos 7,nginx,supervisor,dotnet core 1.1

问题:

在 Linux 配置 supervisor 时,如下命令运行项目会出现各种路径问题,可能涉及一个 work dir 的概念;Windows 同样适用。

只能在项目的当前目录运行 dotnet 才可正常。

command=dotnet /home/wwwroot/www.automan.com/automan.dll

解决:

command=/bin/bash -c "cd /home/wwwroot/www.automan.com && dotnet automan.dll"

 

发表评论
用户名: 匿名