使用命令行调用IISExpress来托管ASP.NET Core App

时间:2017-11-05 13:55:40

标签: asp.net-core .net-core iis-express

我有一项服务依赖于很多其他服务,在开发期间,我只是启动所有其他服务(手动使用VS 2017)。为了避免这一步,我尝试使用以下命令创建一个批处理文件,以使用IISExpress来托管我的ASP.NET核心Web API。

dotnet build 
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\Extensions\Microsoft\Web Tools\ProjectSystem\VSIISExeLauncher.exe" -p "C:\Program Files\dotnet\dotnet.exe" -a "exec \".\Service\bin\Debug\netcoreapp2.0\MyService.dll\"" -pidFile [System.IO.Path]::GetTempFileName() -wd ".\"

从PS命令提示符(管理员)调用批处理文件时,我收到以下错误

  

无法启动进程:C:\ Program Files \ dotnet \ dotnet.exe

     

上次错误= 267

上述命令有什么问题吗?

1 个答案:

答案 0 :(得分:5)

您还必须设置环境变量,我在以下博客文章中清楚地记录了这些变量

https://blog.lextudio.com/how-visual-studio-launches-iis-express-to-debug-asp-net-core-apps-d7fd3677e3c3