具有所需 .NET 程序集的 IronRuby REPL
组合“快捷方式”来启动带有预加载的一些 .NET 程序集的 IronRuby REPL 的最佳方法是什么?我认为在 Powershell 中有一种方法可以做到这一点(通过 Snapin 或 Module),并且我正在 IronRuby 中寻找类似的东西。
What is the best way to put together a "shortcut" to launch a IronRuby REPL with some .NET assemblies preloaded? I think there is a way to do this in Powershell (via Snapin or Module) and I'm looking for something similar in IronRuby.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个执行
ir -S irb -r irb/completion -r bin/Assembly1.dll -r bin/Assembly2.dll 的bat 文件
create a bat file that executes
ir -S irb -r irb/completion -r bin/Assembly1.dll -r bin/Assembly2.dll