stacker
stacker

Reputation: 14941

How can I add dll to the GAC?

running gacutil.exe /i ProjectX.Core.dll, I got the message: Assembly sucessfully added to te cache, but I can't see this assembly in the c:\windows\assembly folder.

What can be the problem?

Upvotes: 4

Views: 5958

Answers (1)

Chris Schmich
Chris Schmich

Reputation: 29524

Which assembly folder are you looking in? With .NET 4, there are now two potential locations: \Windows\assembly and \Windows\Microsoft.NET\assembly (with all of the various sub-directories beneath them).

Upvotes: 2

Related Questions