Reputation: 751
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)?
Upvotes: 1
Views: 1304
Reputation: 942348
.netmodules are intermediate files. A collection of them creates an assembly. Only an assembly can store executable code.
Upvotes: 1