Tagged Questions
The gac tag is for issues relating to the global assembly cache.
98
votes
5answers
22k views
.NET 4.0 has a new GAC, why?
%windir%\Microsoft.NET\assembly\ is the new GAC, does it mean now we have to manage two GACs, one for .NET 2.0-3.5 apps and the other for .NET 4.0 apps?
The question is, why?
25
votes
8answers
6k views
What are the advantages and disadvantages of using the GAC?
And on top of that, are there cases where one has to use the global assembly cache or where one cannot use it?
21
votes
7answers
3k views
When and when-not to install into the GAC?
When should you install into the GAC and when should you not? (I am referring, really, to installing on a client's machine when they have purchased our product(s)).
I have an assembly that is only ...
18
votes
4answers
6k views
How can I force .NET to use a local copy of an assembly that's in the GAC
I have a .NET assembly that (for reasons outside my control) must be in the GAC. However, the same assembly is used by another program, which has a its own copy of an older version of the same ...
16
votes
4answers
2k views
When should I deploy my assemblies into the GAC?
I would like to know practically what kind of Assemblies should I deploy in GAC.
Case 1. If in my Solution multiple project uses log4net.dll then should it be deployed in GAC?
Case 2. If I have ...
11
votes
1answer
4k views
Gacutil.exe successfully adds assembly, but assembly not viewable in explorer. Why?
I'm running GacUtil.exe from within Visual Studio Command Prompt 2010 to register a dll (CatalogPromotion.dll) to the GAC. After running the utility, it says Assembly Successfully added to the cache, ...
11
votes
3answers
6k views
Assembly installed into the GAC not showing up in Visual Studio
This sounds related to this question, but they aren't the same thing. That question had no assemblies showing up. Mine has everything except the specific one I installed.
I'm hoping someone has a ...
11
votes
8answers
3k views
What's the 'correct' way of registering/installing an Assembly to the GAC?
There seems to be lots of different ways to register assemblies with the GAC, as in, they 'work'. However, what's the "proper" way of doing it?
In response to Lou Franco (and gacutil):
I'm using ...
10
votes
5answers
5k views
10
votes
2answers
784 views
Does a (.net) COM+ assembly need to be installed in the GAC?
I have a .net assembly that has a COM+ ServicedCopmonent in it and at the moment I install it into the GAC to get everything working. This means that I need to have every assembly that it references ...
9
votes
4answers
4k views
Dll in both the bin and the gac, which one gets used?
We have a web application that's deployed to many websites with only frontend changes, the shared backend portion has it's DLL in the GAC so we only have to update that one dll and all the sites get ...
9
votes
7answers
3k views
Why should I NOT use the GAC?
There have been a few questions asked along this line stackoverflow such as
What are the advantages and disadvantages of using the GAC
and When and when-not to install into the GAC? and a few people ...
8
votes
1answer
73 views
What is the best way to make shared libraries available to multiple applications?
Like most shops we've got a team of people working on various projects that all need to access the same core information and functions that relate to our business, usually in C#. We're currently just ...
8
votes
3answers
4k views
C# how to register assembly in the GAC without GacUtil?
Hi
I need to register an assembly in the GAC using batch file. Is there a way to find the installation location of GacUtil.exe or is there a way to register the assembly without GacUtil?
Thank you,
...
8
votes
4answers
590 views
.NET Assembly References going all circular on me
Update: Last night, I decided that this is just too much work to change the folder where some reports are saved. My work-around here is to rename the folder, run the batch job I need done, and then ...
8
votes
5answers
2k views
8
votes
2answers
3k views
Methods to programmatically install a .NET assembly into the GAC
I need to create a small app or script to install a .NET assembly into the GAC. I've read there are a couple ways to do this including:
using gacutil.exe
executing the following line of code:
new ...
8
votes
9answers
24k views
Unable to install or run the application. The application requires stdole Version 7.0.3300.0 in the GAC
Our ClickOnce application is reporting "Unable to install or run the application. The application requires stdole Version 7.0.3300.0 in the GAC" when one user tries to run the application.
It's ...
7
votes
3answers
219 views
Popular open source libraries and reference conflicts
We use log4net in all of our (many) in-house applications. We typically do what amounts to xcopy deployment. For developer convenience, we compiled the log4net source into one of our core libraries.
...
7
votes
1answer
152 views
When probing for assemblies why does the searched for publicKeyToken differ when running as admin vs as a normal user?
I'm following instructions from a 2006 Microsoft .Net course workbook, going through one of the exercises. (Specifically this course is MS2349B and I'm doing Module 4 Exercise 2.). These exercises ...
7
votes
1answer
6k views
MVC 3 - The name 'ViewBag' does not exist in the current context
I am trying to use ViewBag in my application, I have all of the recent dlls, the latest version of MVC 3, but yet I am still getting the Error: "The name 'ViewBag' does not exist in the current ...
7
votes
3answers
326 views
To GAC, or not to GAC?
I have a data access layer (DAL) that is written in ASP.NET 3.5 and uses the Microsoft patterns & practices libraries (hereafter referred to as P&P) in order to accomplish its data access. I ...
7
votes
6answers
6k views
Can not find System.Windows Assembly
This is the error we get:
Error 1 The type 'System.Windows.Point' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Windows, Version=2.0.5.0, ...
7
votes
7answers
3k views
How to set C# library path for an application?
I have C# application that uses a dll. When I try to run the application, it can't find the dll, unless it is in the same directory or in GAC. I do not want to have it in the same directory and I do ...
6
votes
1answer
295 views
Installing Assembly into GAC
I tried to install an assembly in GAC using
new System.EnterpriseServices.Internal.Publish().GACInstall("Foo.dll"); But I could not find that installed in c:\windows\assembly\gac_msil folder. I ...
6
votes
1answer
6k views
Use Visual Studio Setup Project to automatically register and GAC a COM Interop DLL
I've created a .NET assembly for COM interop and it is working well on my development machine. I'm currently trying to figure out how to deploy the DLL to a target machine using Visual Studio's ...
6
votes
4answers
3k views
.NET Reference “Copy Local” True / False Being Set Based on Contents of GAC
We had a very interesting problem with a Win Forms project. It's been resolved. We know what happened, but we want to understand why it happened. This may help other people out in the future who have ...
6
votes
2answers
1k views
.NET assembly loading priorities
I have a solution with 3 projects (GUI, BL and DAL). The DAL assembly is signed and deployed in the GAC.
When I build the solution the DAL is compiled and the assembly placed in the bin folder of the ...
6
votes
7answers
2k views
“Official” Way to deploy Assemblies into the GAC?
I just wonder - if I need to deploy an assembly into the GAC, what is the "official" way of doing it?
Currently we either manually drag/drop into the c:\windows\assembly folder or we use gacutil.exe. ...
6
votes
2answers
505 views
Do I need to secure my strong name key file for an open-source project?
I'm creating a starter kit that installs the compiled assemblies from an open-source project into the GAC to make it easier to reference the assemblies in the template. Since they're going in the GAC, ...
6
votes
4answers
295 views
What extra steps do you take when creating MSI installers for Vista?
I have a very simple Setup project that copies three dlls into the GAC. That's all it has to do. It works fine in XP, but on a Vista machine, it errors out stating that it cannot write to the file and ...
6
votes
4answers
16k views
(Physical)(Installed) path of DLL installed to the GAC
How can I get the (physical) installed path of a DLL that is (may be) registered in GAC? This DLL is a control that may be hosted in things other than a .Net app (including IDEs other than VS...).
...
6
votes
3answers
3k views
How do I get Visual Studio's “Publish Website” to 1. not overwrite web.config & 2. promote copies of dlls that were referenced from my GAC
I started using a a library which I reference from the GAC during development. I want the dll included in the project bin directory when I promote it to the webserver. I also need my local and the ...
6
votes
5answers
13k views
How to add a dll to gac in vista
When I drag & drop a dll to the assembly folder on vista, I get the error "Access is denied: mydll.dll". How can I bypass the error message and add my dll to gac?
5
votes
1answer
231 views
Setup Project is not correctly registering assembly in GAC
I have created a custom Rewrite Provider for IIS 7 following instructions in this article: Developing a Custom Rewrite Provider for URL Rewrite Module
To simplify deployment, I have created a VS2010 ...
5
votes
3answers
547 views
Why I cannot access the C:\WINDOWS\assembly\GAC Folder?
I find the path of Microsoft.Office>interop.Excel under the Solution/References is
C:\WINDOWS\assembly\GAC\Microsoft.Office.Interop.Excel\11.0.0.0__71e9bce111e9429c\Microsoft.Office.Interop.Excel.dll
...
5
votes
2answers
1k views
Why is my assembly not visible in “Add Reference > .Net” when installed to the GAC?
Just have a quick question about the GAC
I created an assembly Awesome.DLL. Had it signed, then installed into the GAC:
C:\MyApps\Awesome\Awesome\Awesome\bin\Release>sn
-k Awesome.snk
Microsoft ...
5
votes
1answer
201 views
signing assemblies with a strong name, ok, but what if some 3rd party DLL isn't signed?
I understand the basic idea behind signing assemblies but have a problem when using Telerik or 2rd party DLLs.
I have an .exe that uses 2 of my own .DLLs, the DLLs in turn make use of the Enterprise ...
5
votes
1answer
305 views
nUnit - ignore GAC copy of a DLL
I am using a nUnit to, well, unit test an assembly.
The assembly is in my project output dir (\bin\debug) and is loaded into nUnit (Assemblies > Add Assembly) from this location.
However an older ...
5
votes
2answers
408 views
GACUtil “Assembly successfully added to the cache” but “Number of items = 0”
Why, when I run:
gacutil –i myAssembly.dll
do I get:
Assembly successfully added to the cache
But then when I run:
gacutil –l myAssembly.dll
I get
Number of items = 0
?
5
votes
1answer
3k views
Trouble registering ChilkatDotNet4.dll to the GAC
I'm trying to add a .NET 4.0 .dll to the GAC. I am attempting to do this because it is published by a 3rd party company as both a 32 and 64bit .dll which I must use from different apps on different ...
5
votes
2answers
132 views
Why are framework dlls repeated in several places?
After installing .Net 4 and getting some questions that were already answered here I also realized how the Framework dlls are repeated in several places for the different Framework versions (this is ...
5
votes
2answers
2k views
Where is the .NET Framework Global Assembly Cache?
I installed the VS2010 and .NET 4.0, then I compiled an assembly and ran the gacutil using the exe available on
%ProgramFiles%\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools
The output of the ...
5
votes
2answers
165 views
If an assembly is in the GAC, do all assemblies that it calls have to be in the GAC too?
The question says it all.
5
votes
2answers
83 views
Revisiting GAC Installations
This one goes round and round I know but I can't seem to find a satisfactory response.
Should assemblies go in the GAC? These questions: when-and-when-not-to-install-into-the-gac and What are the ...
5
votes
2answers
2k views
GAC'ing 4.0 assemblies
I have built a dll with VS2010 targeted for framework 4.0. When I try to gac the assembly (either by drag drop the assembly into the GAC folder or by command line using gacutil), it does not give me ...
5
votes
1answer
2k views
Using WiX to put an assembly into both the GAC and Install Path
I'm just starting to learn how to use WiX and I'm running into a snag. My package uses a third party library that requires some file to exist both in the GAC and the package installation directory.
...
5
votes
3answers
1k views
How to prevent a .NET application to use an assembly from the GAC?
Can I configure a .NET application in a way (settings in Visual Studio) that it references a "local" assembly (not in GAC) instead of an assembly within the GAC, although both assemblies have the same ...
5
votes
6answers
3k views
Deploy my DLLs to GAC for use with ClickOnce App
How do I do it? Is there any reason I shouldn't?
I have a winform ClickOnce App that has about 13mbs in DLLs that are not mine so I would have no need/ability to update them at any regular ...
5
votes
3answers
2k views
Use PowerShell to view contents of the Global Assembly Cache (GAC)
Is there a way to use PowerShell to view the contents of the GAC?