Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Two locations of gacutil.exe

Tags:

I'm developing on Windows 2008 R2 Server, 64 bit. I'm learning how to use gacutil.exe I found two copies of this file:

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\x64
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\

I built a dll in VS2007, then I added a build post event, that calls gacutil.exe to transfer the dll to GAC. Does it matter which gacutil.exe I use?

like image 481
bmw0128 Avatar asked Mar 03 '10 18:03

bmw0128


1 Answers

I would assume that you should use the file located at

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\x64

since it is the 64bit version of the utility and you are developing on a 64bit OS.

like image 183
Daniel Situnayake Avatar answered Sep 28 '22 19:09

Daniel Situnayake