Tagged Questions

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 ...
2
votes
1answer
147 views

What's the purpose of the Global Assembly Cache (GAC)?

I have registered a DLL in the GAC. I can see the DLL in the path: c:\windows\asssembly; I suppose this means the DLL registerd correctly. However, if i have to use the DLL in my application, I still ...
2
votes
2answers
374 views

Define a .net reference to always use the latest version of a GAC'd dll?

We have a vendor who is writing an application for us who makes use of a dll I've provided to them. My boss just found out that if we ever need to make a change to one of our dll's we'd have to ...
1
vote
3answers
74 views

Referencing the Global Assembly Cache

I have a project which needs to use NHibernate to communicate with my Oracle database. Many projects at my workplace use NHibernate, so the NHibernate assembly was placed in the Global Assembly ...
1
vote
1answer
94 views

Assembly needs to be redeployed into GAC every time its user app is changed

So basically we have an strong-names (strongly signed) assembly x.dll which is used by one of our components, App.exe. The signing key of the assembly is in our repository and it the assembly is ...
1
vote
1answer
135 views

How to force use of GAC'd assembly?

I am working on an application that uses an assembly that must be in the GAC. My problem is that when I update the assembly in the GAC I have to reboot the machine to get my service to pick up the ...
1
vote
1answer
232 views

bin-deploying DLLs banned in leiu of GAC on shared IIS 6 servers

I need to solicit feedback about a recent security policy change at an organization I work with. They have recently banned the bin-deployment of DLLs to shared IIS 6 application servers. These ...
1
vote
2answers
294 views

See if any application has a DLL from the GAC loaded

I'm trying to deploy new copies of my DLL to the GAC on remote servers, but I need to identify if any processes currently running have a loaded copy of the DLL I'm replacing - I'd like to restart ...
0
votes
1answer
86 views

Is there any tool for GAC management?

Is there any GUI to view, add, delete assemblies in Global Assembly Cache?
0
votes
2answers
91 views

Do supporting assemblies need to be registered in the GAC?

I recently had to register an assembly in my GAC for a custom sharepoint job I wrote. Once installed it began throwing an error saying that it could not load an assembly "or one of its dependencies". ...
0
votes
4answers
499 views

How do I add a modified dll to the Global Assembly Cache?

I have the MySQL Connector/NET installed on my PC. I modified the source code and recompiled one of the dlls (MySQL.Data.dll). With the program already installed, how can add this dll to the Global ...
0
votes
1answer
1k views

Wix - Dynamically Register Assemblies to GAC

I am writing a Wix installer to install .NET assemblies to the GAC. Easy... My question is: is it possible to future proof this scenario so that I can pull ANY assemblies found in an existing network ...
0
votes
2answers
216 views

How can I automate the installation of assemblies to the GAC over a network?

I need to install the same assembly to the GAC for 30+ servers. I would prefer not to have to RDP to each server and install the assembly manual. Is there a straightforward way to install assemblies ...