Powerbuilder 中的完整构建、增量构建和部署
Powerbuilder 中的完整构建、增量构建和部署之间有什么区别?我能看到的唯一区别是 Deploy 允许您更新 PBD 以进行部署。
What is the difference between a Full Build, an Incremental Build and Deploy within Powerbuilder? The only difference I can see is that Deploy allows you to update the PBDs for, well, deployment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
完整构建会重新生成每个对象。增量构建重新生成更改的对象和引用更改的对象的对象。 (事实上,增量比这更复杂,但这就是预期的想法。)部署启动在目标属性中选择的任何项目,因此它可以执行增量或完整构建,具体取决于中定义的内容项目,并生成项目定义的任何可执行文件。
祝你好运,
特里。
Full Build regenerates every object. Incremental Build regenerates changed objects and objects that reference changed objects. (Reality is that incremental is a little more complex than that, but that is the intended idea.) Deploy launches whichever project is selected in the properties for the target, so it can do an incremental or full build, depending on what is defined in the project, plus generate whatever executables are defined by the project.
Good luck,
Terry.
我将我的项目设置为完整构建。看起来比增量更可靠。无论如何,即使在大型项目中,完整构建也非常快。使用增量构建并不能节省很多时间。
当您想要构建项目并在构建后立即运行它时,可以使用部署。
I set my projects to Full build. It seems to be more reliable than incremental. Full build is very fast even on LARGE projects anyways. There is not a lot of time savings using incremental build.
Deploy is used when you want to build the project AND run it immediately after the build.