المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : One solution, few projects and one exe without dlls



C# Programming
09-07-2009, 12:00 AM
Hi, I'm wondering how to compile entire solution in one exe without any other dll files. There are a few possibilities:
1. Copy all files from dll projects into exe project (yah).
2. Compile all normally with dlls and use ILMerge (doesn't support NET frameworks higher than 2.0) or some shareware software to make it one exe (also you can use Thinstall) quite expensive...
3. Use resources, but managing is very annoying.

but... Is there any possibility to add an external existing dll project (my project) and compile it with other windows forms application (exe) and get only one exe file without dll files? Copying files from dll project is not desirable, because I want to have a possibility to modify dll and get those files synchronized...

Any suggestions?