如何使用 MSBuild 发布 Asp.NET Web 应用程序? [英] How do I publish a Asp.NET web application using MSBuild?

查看:23
本文介绍了如何使用 MSBuild 发布 Asp.NET Web 应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 NAnt 和 MSBuild 在本地发布一个 Asp.net MVC Web 应用程序.这就是我用于我的 NAnt 目标的东西;

I am trying to publish an Asp.net MVC web application locally using the NAnt and MSBuild. This is what I am using for my NAnt target;

<target name="publish-artifacts-to-build">
    <msbuild project="my-solution.sln" target="Publish">
      <property name="Configuration" value="debug" />
      <property name="OutDir" value="builds" />
      <arg line="/m:2 /tv:3.5" />
    </msbuild>
</target>

我得到的只是作为回应;

and all I get is this as a response;

[msbuild]          Skipping unpublishable project.

是否可以通过这种方式通过命令行发布 Web 应用程序?

Is it possible to publish web applications via the command line in this way?

推荐答案

您尝试调用的发布"目标是用于OneClick"部署,而不是用于发布网站...这就是为什么您得到看似奇怪的消息.您可能希望使用 AspNetCompiler 任务,而不是 MSBuild 任务.请参阅 http://msdn2.microsoft.com/en-us/library/ms164291.aspx 有关此任务的更多信息.您的PublishDir"将对应于任务的 TargetPath 属性.

The "Publish" target you are trying to invoke is for "OneClick" deployment, not for publishing a website... This is why you are getting the seemingly bizarre message. You would want to use the AspNetCompiler task, rather than the MSBuild task. See http://msdn2.microsoft.com/en-us/library/ms164291.aspx for more info on this task. Your "PublishDir" would correspond to the TargetPath property of the task.

来源

这篇关于如何使用 MSBuild 发布 Asp.NET Web 应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆