Aspnet_Compiler 发布除修改之外的所有 dll

发布于 2024-12-07 07:05:50 字数 511 浏览 0 评论 0原文

在我们的持续集成过程中,我们使用 Aspnet 编译器来发布源代码。但这样做时,它只发布修改后的 dll。

我们的任务就像

<AspNetCompiler
              VirtualPath = "DeployTemp" 
              PhysicalPath = "Physical path"
              TargetPath = "Target path"
              Force = "true"
              Debug = "false"
              Updateable = "true"/>

我们想要的是发布整个 dll,而不是修改后的 dll。即我们想要重建 整个解决方案。

当我们搜索时,我们在 aspnet_compiler 中找到了一个选项 -c 来实现此目的。但我们不知道如何在这里应用它。请提出您的建议。

In our continuous integration process we are using Aspnet compiler to publish the source. But while doing, it only publishes the modified dlls.

Our task is like

<AspNetCompiler
              VirtualPath = "DeployTemp" 
              PhysicalPath = "Physical path"
              TargetPath = "Target path"
              Force = "true"
              Debug = "false"
              Updateable = "true"/>

What we want is to publish the whole dlls not the modified ones. ie we want a rebuild of the
whole solution.

When we searched we found an option -c in aspnet_compiler for this. But we don't know how to apply it here. Please give your suggestions.

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

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

发布评论

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

评论(1

对不⑦ 2024-12-14 07:05:51

使用Clean选项 - 相当于-c命令行选项。例如:

<AspNetCompiler
              VirtualPath = "DeployTemp" 
              PhysicalPath = "Physical path"
              TargetPath = "Target path"
              Clean="true"
              Force = "true"
              Debug = "false"
              Updateable = "true"/>

有关详细信息,请参阅AspNetCompiler 任务的文档

Use Clean option - its equivalent of -c command line option. For example:

<AspNetCompiler
              VirtualPath = "DeployTemp" 
              PhysicalPath = "Physical path"
              TargetPath = "Target path"
              Clean="true"
              Force = "true"
              Debug = "false"
              Updateable = "true"/>

For more information, see the documentation for the AspNetCompiler task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文