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.




Reply With Quote