tags:

views:

2800

answers:

2

I want to run a post build script that installs the dll in the gac, but i have to use the full path to gacutil.exe, where can i find this? i have visual studio 2008

+8  A: 

The answer is C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe

Shrage Smilowitz
If you're looking for this out on a Server, you'll need to install the SDK. Links can be found here:http://blogs.msdn.com/shawnfa/archive/2006/02/08/527663.aspx
Michael K Campbell
+4  A: 

Open the Visual Studio command prompt (Start -> Programs -> Visual Studio -> Visual Studio Tools -> Visual Studio Command Prompt). Run the following command:

c:\Program Files...\> where gacutil
Kev