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 ...
3
votes
2answers
270 views
Can I register to the GAC with Pascal scripting (InnoSetup)?
I'm using InnoSetup to install an application I built. My client requests that it downloads the latest DLLs upon install using this InnoSetup addon:
http://www.sherlocksoftware.org/page.php?id=50
...
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
373 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 ...
2
votes
1answer
923 views
How to add VB.NET Class to GAC, and use it in Code-Behind
I created a VB.NET Class, and created a strong key, and added it to the GAC using the GacUtil. That part has gone smoothly. The Assembly is installed in the GAC and seems to be installed/configured ...
1
vote
1answer
51 views
How to tell which application(s) have a given assembly registered in the GAC?
When trying to remove a given assembly (log4net.dll in this case, but it should apply to any similar case) using gacutil.exe, the action fails due to the assembly being required by an application. ...
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
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
0answers
154 views
I don't know why the GAC assembly load fails
I am implementing installshield project, and i put some assemblies into [GlobalAssemblyCache]
I thought it would work, but it didn't
Below is the log.
Actually, Every Assemblies i put into ...
0
votes
3answers
713 views
How is windows not finding this assembly?
I keep getting this error in my windows logs:
SharePointSocialNetworking.Facebook
b0ceb144-b183-4b66-aa10-39fd9ee42bd4
Could not load file or assembly 'Microsoft.Contracts, Version=1.0.0.0, ...
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
498 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
215 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 ...