Tagged Questions

11
votes
8answers
1k 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?
9
votes
7answers
879 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 …
8
votes
2answers
374 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 …
6
votes
6answers
710 views

How to set C# library path for an application?

Hello, 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 …
6
votes
4answers
206 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
1k 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 …
5
votes
5answers
346 views

What is the GAC in .NET?

Just looking for a short overview of GAC for a layman, not a link please.
5
votes
8answers
1k 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 …
4
votes
2answers
134 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 …
4
votes
2answers
84 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 …
4
votes
1answer
359 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 …
4
votes
2answers
276 views

FxCop and GAC Madness

Using FxCop when I try to analyze projects that rely on Patterns and Practices, Enterprise Library Data (among others) 2.0.0.0 - FxCop complains that it can’t: “Locate Assembly Reference” - even …
4
votes
4answers
2k views

Adding a web reference to a DLL which is GACed

I come across this problem when i am writing an event handler in SharePoint. My event handler has a web reference. When i create this web reference, the URL of the web service will be added in the …
3
votes
2answers
270 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 …
3
votes
6answers
207 views

.NET: What is the GAC? What problem does it solve? [closed]

Possible Duplicate: What is the GAC in .NET? Basic information for a seasoned .NET developer, but not so obvious for a newbie: What is the GAC? What problem does it solve?

1 2 3 4 5 11 next
15 30 50 per page