LINQPad - 可以从命令行运行 linqpad 脚本吗?
有没有办法从命令提示符(无 GUI)运行 LINQPad 脚本?
如果是这样,LINQPad 可以方便地编写 C# 脚本并从自动构建中调用它。
Is there a way to run a LINQPad script from the command-prompt (no gui)?
If so, LINQPad would be handy for scripting C# and calling it from an automated build.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
LinqPad 的 lprun 已到达:
http://www.linqpad.net/lprun.aspx
lprun from LinqPad has already arrived:
http://www.linqpad.net/lprun.aspx
是的,从LINQPad v4.45.05开始:
LINQPad.exe "c:\path\to\my\script.linq" -run
关闭LINQPad< /strong> 窗口,请务必在脚本末尾调用此函数:
Process.GetCurrentProcess().CloseMainWindow();
Yes, as of LINQPad v4.45.05:
LINQPad.exe "c:\path\to\my\script.linq" -run
To close the LINQPad window, be sure to call this at the end of your script:
Process.GetCurrentProcess().CloseMainWindow();
Beta 版本 4.47 中刚刚添加了从命令行运行 LINQPad 脚本的功能。
有关新 lprun.exe 实用程序的完整文档位于:http://www.linqpad.net/lprun.aspx
The ability to run LINQPad scripts from the command lines was just added in beta version 4.47
Full documentation on the new lprun.exe utility is available on: http://www.linqpad.net/lprun.aspx