Dll
-
Hi I have developed a project in which i am using a external dll file now i created a setup project .. so whenever i am installing it on the clients PC .its giving a error error is bcoz of that dll which was not added to the Clients GAC so how to do this i have tried these things 1. Added the reference of DLL while developing the software 2. Added the Dll To the GlobalAssemblyCache folder while doing setup the above things dint work when i published that project it worked i want to do this thru the setup project ....... if anyone knows this then plz do let me know regards sindhu tiwari
Always Innovative
-
Hi I have developed a project in which i am using a external dll file now i created a setup project .. so whenever i am installing it on the clients PC .its giving a error error is bcoz of that dll which was not added to the Clients GAC so how to do this i have tried these things 1. Added the reference of DLL while developing the software 2. Added the Dll To the GlobalAssemblyCache folder while doing setup the above things dint work when i published that project it worked i want to do this thru the setup project ....... if anyone knows this then plz do let me know regards sindhu tiwari
Always Innovative
Did you create the DLL yourself, or is it a 3rd party DLL? I don't know much about this, but I just recently read (in a book) some things about using 3rd party DLL's. One of the drawbacks of using somebody else's DLL is that you supposedly cannot add it to the GAC yourself, because it's not digitally signed by YOU. So, you'll need to manually copy the DLL to the same folder as your exe, if I remember correctly. Beyond this, I am worthless, having never created a setup program for a .Net product yet...
-
Did you create the DLL yourself, or is it a 3rd party DLL? I don't know much about this, but I just recently read (in a book) some things about using 3rd party DLL's. One of the drawbacks of using somebody else's DLL is that you supposedly cannot add it to the GAC yourself, because it's not digitally signed by YOU. So, you'll need to manually copy the DLL to the same folder as your exe, if I remember correctly. Beyond this, I am worthless, having never created a setup program for a .Net product yet...
thanks allot for ur reply......ya its a third party Dll .....a question is copying dll to same folder will solve the problem sindhu tiwari
its me sid
-
Hi I have developed a project in which i am using a external dll file now i created a setup project .. so whenever i am installing it on the clients PC .its giving a error error is bcoz of that dll which was not added to the Clients GAC so how to do this i have tried these things 1. Added the reference of DLL while developing the software 2. Added the Dll To the GlobalAssemblyCache folder while doing setup the above things dint work when i published that project it worked i want to do this thru the setup project ....... if anyone knows this then plz do let me know regards sindhu tiwari
Always Innovative
If the dll really needs to be registered, You'll need to run regsrv32 during the setup process. http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/regsvr32.mspx?mfr=true[^]
Just because we can; does not mean we should.