A Ahmed Ben Messaoud May 29, 2004 #1 I have a program that requires multiple DLL's, how can i check for these dependencies on startup? TIA, Ahmed
I have a program that requires multiple DLL's, how can i check for these dependencies on startup? TIA, Ahmed
H Herfried K. Wagner [MVP] May 29, 2004 #2 * Ahmed Ben Messaoud said: I have a program that requires multiple DLL's, how can i check for these dependencies on startup? Click to expand... Install them using a setup.
* Ahmed Ben Messaoud said: I have a program that requires multiple DLL's, how can i check for these dependencies on startup? Click to expand... Install them using a setup.
H Herfried K. Wagner [MVP] May 29, 2004 #4 * Ahmed Ben Messaoud said: Can i use a linker to compile all my DLLs into 1 EXE? Click to expand... Basically, no. The Application will still require the .NET Framework to be installed. Nevertheless, you can do that for your own DLLs: <URL:http://www.gotdotnet.com/community/usersamples/?query=illink> <URL:http://research.microsoft.com/research/downloads/#ILMerge> Documentation: <URL:http://research.microsoft.com/~mbarnett/ilmerge.aspx>
* Ahmed Ben Messaoud said: Can i use a linker to compile all my DLLs into 1 EXE? Click to expand... Basically, no. The Application will still require the .NET Framework to be installed. Nevertheless, you can do that for your own DLLs: <URL:http://www.gotdotnet.com/community/usersamples/?query=illink> <URL:http://research.microsoft.com/research/downloads/#ILMerge> Documentation: <URL:http://research.microsoft.com/~mbarnett/ilmerge.aspx>