Tagged Questions
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 ...
3
votes
2answers
1k views
GAC installation on every build - how to do it reliably
I would like to reliably auto-install my application assemblies in the GAC when I compile my application using Visual Studio. I've setup pre- and post-build events in my web application's build.
Pre ...
3
votes
6answers
12k views
Register DLL in GAC without Assembly Manifest
I have a DLL I wish to register with my GAC. I enter the command:
gacutil /i c:\temp\msvcr100.dll
and I get the error:
Failure adding assembly to the cache: The module was expected to contain an ...
2
votes
1answer
938 views
GAC 32bit vs. 64bit
I've been searching for a while trying to understand this better, but am not finding any straight-forward answers on this.
I have a component that I need to add to the GAC. I'm running Windows 7 ...
1
vote
2answers
482 views
GACed .net library project succesfully build only on second try
I'm trying to build a project library that needs to be in the GAC, so I added the following line as a post build event:
"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\gacutil.exe" -if ...
0
votes
1answer
26 views
Including in a Visual Studio 2005 project a DLL built with Visual Studio 2010
I have a dll library built in Visual Studio 2010, but I need to include it in a VS 2005 project.
If I do it, I get the error message
This assembly is built by a runtime newer than the currently ...
0
votes
2answers
597 views
gacutil postbuild event exists with code 1
I am trying to register and assembly in the GAC on a post-build event. Here's my post-build command
"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64\gacutil.exe" /if ...
0
votes
2answers
828 views
Add Reference in Framework 4 Application is not showing assemblies in GAC registered with GACUtil V 4
I've registered a dll in my local GAC using the GACUtil which comes with VS2010 (version 4ish)
I can perform gacutil /l xxx and it finds the dll
I am aware from various other posts that Framework 4 ...