Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,如果这个问题看起来很基本,但我做了一些谷歌搜索并找不到明确的答案(也许我不知道正确的关键字)。
.NET Core 能否用于从 C#/F# 源构建本机命令行 Linux 二进制文件?(我知道单声道)
是的,它可以。我有点搞砸了。
dotnet new console
...
dotnet publish -c release -r linux-x64
或者类似的东西......自从我搞砸了它已经有一段时间了,但是那里有关于在 Linux 上做 dotnet 的帮助和教程,我已经让它在 CentOS 7 上工作得很好。当然,我做到了这在 Linux 机器上而不是在 Windows 机器上。如果您询问是否可以使用 .NET Core 在 Windows for Linux 上创建控制台(命令行)应用程序,我不知道。