Reputation:
I am writing a C++/CLI which have access/"dependencies" to many DLL COM and DLL .NET libraries.
Is this possible to link/join all these libraries into my C++/CLI program and generate only one executable object in such a way that I never again have to consider these dependencies every time I have to move my object to another computer?
Thanks!!!
Upvotes: 0
Views: 544
Reputation: 54764
ILMerge is an option for collapsing several managed assemblies into one: ILMerge Best Practices
However ILMerge might not be an option:
Upvotes: 3