views:

131

answers:

3

I have an email client created for class that we need to run as a single EXE. It is made with C++ .NET, and the external POCO library, which has a ton of DLL files... What would be the best way to make this happen?

I was looking on some similarly asked questions, and some people recommended tools such as ILMerge and Ezirez, but the question only asked for making a single EXE file for .NET, but I want it for both .NET and a 3rd party external POCO library.

A: 

Why don't you just try it with a small test app using 1 POCO and 1 or more .NET DLLs? Then you can post your results and effectively answer your own question if it works.

Timothy Walters
A: 

Can you statically link the POCO library and then use ILMerge?

the dol
A: 

You cannot ILMerge a mixed-mode C++ assembly.

Aidan Ryan