NAnt Web 应用程序部署

发布于 2024-07-16 14:59:57 字数 190 浏览 7 评论 0原文

再会。

我正在尝试使用 NAnt 部署 Web 应用程序。 当前使用 NAnt ZIP 任务对其进行压缩。

我可以尝试从 NAnt 调用 MSDeploy,但我不认为 MSDeploy 是为此类部署编写的。

我也可以尝试使用 NAnt 任务。

有人建议什么方法可以最节省我的时间吗?

Good day.

I'm trying to deploy a web application using NAnt. It is current zipped using the NAnt ZIP task.

I can try calling MSDeploy from NAnt but I don't think MSDeploy was written for such deployments.

I can also try using NAnt task.

Does anybody have suggestions as to what approach can save me the most time?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

睡美人的小仙女 2024-07-23 14:59:57

使用 aspnet 编译器是最简单的方法,它可以让您访问所有 cl 参数,这在 nant 任务中不可用。 不知道为什么会这样。

这就是我所做的,

<property name="aspnetcomplier" value="C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler.exe" />
  <target name="deploy">
    <mkdir dir="${output.dir}" />
    <exec program="${aspnetcomplier}">
      <arg value="-v" />
      <arg value="/trunk" />
      <arg value="-p" />
      <arg value="${source.dir}\Root" />
      <arg value="-f" />
      <arg value="${output.dir}" />
    </exec>
  </target

没什么复杂的。就像魅力一样。
PS 不要忘记执行 iisreset /stop 和 /start

  <target name="stop.iis" >
    <servicecontroller action="Stop" service="w3svc" timeout="10000" verbose="true" />
  </target>

  <target name="start.iis" >
    <servicecontroller action="Start" service="w3svc" timeout="10000" verbose="true" />
  </target>

Using the aspnet compiler is the simplest way and gets you access to all cl arguments which is not available on nant tasks. Not sure why it's so.

Here's what I do

<property name="aspnetcomplier" value="C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler.exe" />
  <target name="deploy">
    <mkdir dir="${output.dir}" />
    <exec program="${aspnetcomplier}">
      <arg value="-v" />
      <arg value="/trunk" />
      <arg value="-p" />
      <arg value="${source.dir}\Root" />
      <arg value="-f" />
      <arg value="${output.dir}" />
    </exec>
  </target

Nothing complicated.Works like a charm.
P.S. Dont forget to do a iisreset /stop and /start

  <target name="stop.iis" >
    <servicecontroller action="Stop" service="w3svc" timeout="10000" verbose="true" />
  </target>

  <target name="start.iis" >
    <servicecontroller action="Start" service="w3svc" timeout="10000" verbose="true" />
  </target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文