如何修复dotnet,exe错误:找不到与命令“ dotnet-c:\ program files \ myAPP \ myapp.dll”匹配的可执行文件

时间:2019-08-10 16:42:47

标签: windows .net-core

我构建了一个.net核心控制台应用程序(.DLL),VS2019本身可以很好地执行。现在,我要部署它。我将项目输出复制到c:\program files\myapp文件夹中并尝试执行:

"c:\program files\dotnet\dotnet.exe" "c:\program files\myAPP\myapp.dll"

尝试执行.NET Core便携式可执行文件时,我收到错误消息(红色):

No executable found matching command "dotnet-c:\program
files\myAPP\myapp.dll"
  1. dotnet.exe通过命令行启动就可以了:

    “ c:\ program files \ dotnet \ dotnet.exe”

  2. 我找到了启动可运行应用程序的方法,但由于其他原因,我不满意:

2a。当前目录是c:\ program files \ myAPP

"c:\program files\dotnet\dotnet.exe" myapp.dll

我尝试了这种解决方法-

2b。应用目录中没有空格

"c:\program files\dotnet\dotnet.exe" c:\myapp\myapp.dll

正确的方法是什么?

0 个答案:

没有答案