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.
当我用 MonoDevelop 编译我的 gtk# 项目时,它会创建文件并将它们放在 /bin/Release 中。但是当我双击该程序时,它会在后台显示单声道运行时终端。我希望能够在不显示运行时终端的情况下打开我的程序。有没有办法做到这一点?
注意:此程序仅用于 Ubuntu。
我认为这不是在 Linux 上双击 Mono 程序集的最佳方式。
您可以尝试创建一个简单的可执行脚本,如下所示:
#!/bin/bash mono /path/to/executable.exe
给它可执行权限,而不是尝试执行它。