【发布时间】:2019-09-07 09:18:39
【问题描述】:
我在 Linux 上成功运行了独立的 .net-core 3 应用程序,但如果我尝试在 AIX 上运行它会失败:
bash: ./CoreConsole: cannot execute binary file: Cannot run a file that does not have a valid format.
我知道 AIX 是 unix 操作系统,但有人设法在其上运行自包含的 .net-core 应用程序吗?
【问题讨论】:
-
你能运行
file $(which bash)和file ./CoreConsole吗?结果可能很有启发性。
标签: .net-core aix self-contained