PowerBuilder 11.5 .NET DLL pbl
我已将 PowerBuilder 应用程序转换为 11.5 .NET。当它构建时,它会编译成一个 DLL、一个 EXE 和一堆“netmodule”文件。网络模块是部署所必需的,还是只是某些中间步骤的一部分?有没有办法让编译器为每个 pbl(PowerBuilder 库)构建一个 DLL?
I have converted a PowerBuilder application to 11.5 .NET. When it builds, it compiles into a DLL, an EXE and a bunch of “netmodule” files. Are the netmodules necessary for deployment, or just part of some intermediate step? Is there any way to get the compiler to build me one DLL for each pbl (PowerBuilder library)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.netmodules 是中间文件。它们的集合创建一个程序集。只有程序集才能存储可执行代码。
.netmodules are intermediate files. A collection of them creates an assembly. Only an assembly can store executable code.