help understanding gacutil.exe and the regisetred dll path
I have this code in a VS2003 setup Project called mySetup.exe that registers the TranslatorHttpHandler.dll in the GAC:
string strCmdLine;
strCmdLine = @"/C C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\gacutil.exe -i TranslatorHttpHandler.dll";
System.Diagnostics.Process.Start("CMD.exe",strCmdLine);
Is this command going to look for the file TranslatorHttpHandler.dll in the same folder where mySetup.exe is located or where.
What I don t understand, even if I rename the TranslatorHttpHandler.dll that I have in the setup folder to another name the registration (setup project) runs without a problem.
Thanks a lot.
Re: help understanding gacutil.exe and the regisetred dll path
To understand gacutil.exe ... see this link
http://moredotnet.googlepages.com/netframework
cheers
Re: help understanding gacutil.exe and the regisetred dll path
I believe it will look for TranslatorHttpHandler.dll in the same folder from which mySetup.exe is being executed.
Re: help understanding gacutil.exe and the regisetred dll path
yes. i was wrong. it doesn t copy it if it doesn t exist.\Thanks guys