vote up 0 vote down star

I am trying to use code written by someone else in my own project. Their code was shipped as a .netmodule file. It seems that I have to build my project from the command line using the /addmodule option -- but is there any way to do this from the IDE?

flag

Maybe you should ask your colleague? Ans ask him why he used a feature most people don't even know exists. – John Saunders Jul 21 at 16:08

1 Answer

vote up 1 vote down check

In my understanding, a netmodule is not meant to be deployed alone. It has to be linked into an assembly and I don't think there is way to do it from within the IDE. You can't just set a reference, because it is incomplete on its own (it sin;t a deployable unit of code). Linking can be done by using compiler’s /addmodule switch, al.exe, or in .Net framework 2.0, you can use link.exe. After it has been linked, the netmodule can then be deployed with the assembly. If you are using .Net 2.0, link.exe can produce a single file assembly. I think the other approaches all create assemblies with multiple files.

Hope that helps.

Dave Ranck

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.