是否有“BeforePackage”?建立目标?
我需要对项目中的文件(我们项目的输出)执行一些更新,并且需要在生成部署包(zip 文件)之前执行此操作。
是否有在构建和打包阶段之间触发的构建目标?
I need to perform some updates on files within my project (our the output of my project) and I need to do this before the deployment package (zip file) is produced.
Is there a build target that fires between the build and packaging phases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有“BeforePackage”构建目标。您可以使用
AfterCompile
目标。更棘手的是使用GenerateDocumentation
目标来达到您的目的,如果没有人覆盖目标的顺序,它将在打包之前出现。No, there is no “BeforePackage” build target. You can use
AfterCompile
target. A little bit more hacky will be to useGenerateDocumentation
target for your purposes, it will come before packaging if no one has overriden ordering of targets.