我使用以下命令发布了一个DNX应用程序:
dnu publish --runtime active --no-source -o ..\artifacts\bin\Release\2016-04-10-3
这创建了预期的输出,我的代码被编译到approot / packages文件夹中的DLL中。
web.cmd文件在最后执行以下命令:
@"%DNX_PATH%" --project "%~dp0packages\MyProject\1.0.0\root" --configuration Release web %*
然而,当我运行它时,我得到以下异常:
Application startup exception: System.IO.FileNotFoundException: Could not load file or assembly 'MyProject' or one of its dependencies. The system cannot find the file specified.
我最初的想法是DNX命令缺少--packages参数,但是当我添加它时会抛出错误。我不确定,我做错了什么。有什么想法吗?
感谢。 ARK