Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Location of Gacutil with vs 2008

Tags:

gacutil

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

like image 705
Shrage Smilowitz Avatar asked May 19 '09 22:05

Shrage Smilowitz


People also ask

Where is Gacutil exe located?

The Gacutil.exe tool is located in the . NET Framework installation directory. The default location for this is C:\Program Files (x86)\Microsoft SDKs\Windows\v10. 0A\bin\NETFX 4.6.

How do I find my GAC assemblies?

Use the global assembly cache tool (gacutil.exe) to view the contents of the global assembly cache (GAC).


2 Answers

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

like image 98
Shrage Smilowitz Avatar answered Nov 07 '22 13:11

Shrage Smilowitz


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
like image 26
Kev Avatar answered Nov 07 '22 13:11

Kev