"mono app.exe" 给出错误 "File does not contain a valid CIL image."

"mono app.exe" gives error "File does not contain a valid CIL image."

我做了以下简单测试。

using System;
namespace test
{
    class App
    {
        static void Main(string[] args)
        {
            Console.WriteLine("test");
            Console.ReadLine();
        }
    }
}

然后编译并将整个 bin 文件夹移动到我的 pi 并尝试使用 "mono app.exe" 运行 它,但我在标题中得到了错误。我如何 运行 在 raspberry pi 上使用单声道编译 .Net 核心可执行文件?

意识到 mono 是 .NET 框架。 我安装了 .NET 核心运行时,它运行良好。 I followed this guide