18

I read more about GAC but i am not clear till now.

Few things what i gathered is, GAC has same assembly with different versions. But i cannot able to find how to create two assembly with different versions and keeping in same folder.

Sivam
  • 1,099
  • 3
  • 12
  • 25

1 Answers1

30

It is located in %windir%\assembly (for example, C:\WINDOWS\assembly) and it is a shared repository of libraries.

Flea777
  • 1,012
  • 9
  • 21
  • 4
    Not strictly true... .NET 4.0 and above uses new repository so you can now have two. More here: http://stackoverflow.com/questions/2660355/net-4-0-has-a-new-gac-why – Belogix Sep 26 '13 at 13:40
  • 1
    You're right. My answer was something general, just as the question. – Flea777 Sep 26 '13 at 13:46