使用 Cruise Control 的 Nant 脚本任务
我在 nant 脚本中使用脚本任务,在脚本任务中我编写了 C# 代码,我试图在其中写入控制台,如下所示
console.writeline("Hello");
我还有一个方法及其返回类型。
实际上,我是从 Cruise Control Web 仪表板调用此 Nant 脚本。
现在我的问题是我只能在 Cruise Control Web 仪表板上的 nant 输出中看到方法的返回类型,但我看不到 console.writeline("Hello") 消息,那么我如何在 nant 下的巡航控制仪表板上也获取控制台消息输出?有什么方法可以在巡航控制网络仪表板上显示控制台消息
,
im using script task in nant Script, in script task i have written C# code in which i'm trying to write to console as below
console.writeline("Hello");
and also i have a method and its return type.
Actually i'm calling this Nant script from Cruise Control web dashboard.
Now my question is i can see only the return type of method in nant ouptut on Cruise Control Web Dash Board but i dont see console.writeline("Hello") message, so how can i get console message also on cruise control dashboard under nant Output? Is there any way to show console messages on cruise control Web dash Board
,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 NAnt Log 方法来编写输出,例如
You need to use the NAnt Log methods to write your output, e.g.