使用 Cruise Control 的 Nant 脚本任务

发布于 2024-10-09 19:16:10 字数 336 浏览 6 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小忆控 2024-10-16 19:16:10

您需要使用 NAnt Log 方法来编写输出,例如

<script language="C#">
  <code>
    <![CDATA[
      public static void ScriptMain(Project project) 
      {
        // ...
        project.Log(Level.Info, "Moving directory {0} to {1}", source, destination);
      }
    ]]>
  </code>
</script>

You need to use the NAnt Log methods to write your output, e.g.

<script language="C#">
  <code>
    <![CDATA[
      public static void ScriptMain(Project project) 
      {
        // ...
        project.Log(Level.Info, "Moving directory {0} to {1}", source, destination);
      }
    ]]>
  </code>
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文