Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>General MS guidelines</p> <ol> <li>no</li> <li>no</li> <li>no</li> </ol> <p>GAC is really a repository for Microsoft common .NET libraries. Yes, they let developers use it too, but as a rule of thumb, if you don't need GAC, don't use it. keep things simple and local if it doesn't hurt.</p> <ul> <li><p>I would consider GAC only for performance reasons, for example if you have some huge assemblies, try to place them into GAC and <a href="http://msdn.microsoft.com/en-us/library/6t9t5wcf.aspx" rel="noreferrer">NGEN</a> them. It should significantly increase performance. Microsoft does it for all standard .NET framework assemblies during installation (now you know why that installation takes so long). Paint.NET does it as well (to improve startup time of their app). However most of us don't work on huge frameworks or photoshop competitors, so most of the time, performance gains from having assembly in GAC are minimal. Not worth giving up simple x-copy deployment.</p></li> <li><p>Some developers might use GAC to make sure that users with insufficient privileges can't delete or modify their assemblies.</p></li> <li><p>For others it might be for versioning reasons but here you should really reconsider. I'm not going to repeat what has been already said, <a href="http://www.sellsbrothers.com/Posts/Details/12503" rel="noreferrer">you can read here why</a>.</p></li> </ul> <p>And don't forget that once you want to deploy into GAC, your installer will need administrator privileges, you can pretty much forget click-once deployment, etc...</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload