CsharpRepl 和交互式 shell 在 Mono for Win 中位于哪里?
I installed Mono on Win7 and trying to find the apps outlined here.
But they don't mention where are they located and launched.
Any ideas on how to access them as a user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需启动 Mono 命令行(位于开始菜单上)。
然后输入
And off you go
不同的是,命令行快捷方式设置了一堆环境变量(特别是 PATH),以便找到单声道二进制文件和批处理脚本包装器(!)。
You just Launch the Mono command line (it's on the start menu).
Then type
And off you go
The twist is that the command line shortcut sets a bunch of environment variables (notably PATH) so that the mono binaries and batch script wrappers (!) are being found.
它是
bin
目录中的csharp.bat
文件,以及 mono.exe 等。将
bin
目录放入您的路径后,您应该只需能够从命令行运行csharp
并直接进入即可。我刚刚安装的 Mono 2.10.5 就是这种情况。It's the
csharp.bat
file in thebin
directory, along with mono.exe etc.Having put the
bin
directory in your path, you should just be able to runcsharp
from a command line and get straight in. That's certainly the case with Mono 2.10.5, which I've just installed.