Register DLL in GAC without Assembly Manifest - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T17:37:25Zhttp://stackoverflow.com/feeds/question/636850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest2Register DLL in GAC without Assembly Manifesttsilb2009-03-12T00:03:18Z2009-06-02T21:39:34Z
<p>I have a DLL I wish to register with my GAC. I enter the command:</p>
<pre><code>gacutil /i c:\temp\msvcr100.dll
</code></pre>
<p>and I get the error:
<PRE>Failure adding assembly to the cache: The module was expected to contain an as
sembly manifest.</PRE></p>
<p>All I have is the DLL. Is there a way to create / fake / bypass it?</p>
<p>For those interested, I am attempting to extract the Visual Studio 2010 & .NET 4.0 CTP from the VHD and run it on my physical box. As a side note, has this been attempted?</p>
http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest/636869#6368690Answer by jeffamaphone for Register DLL in GAC without Assembly Manifestjeffamaphone2009-03-12T00:09:52Z2009-03-12T00:09:52Z<p>If you can create the manifest (I'm not sure what one should look like) it's easy enough to just load the DLL into Visual Studio's resource editor (File->Open->File->[select dll]->[click down chevron on the Open button]->Resource View) and just add the manifest to the dll.</p>
http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest/636871#6368710Answer by alphabeat for Register DLL in GAC without Assembly Manifestalphabeat2009-03-12T00:10:52Z2009-03-12T00:10:52Z<p>I suppose the same process is done when you drag and drop to C:\Windows\assembly? </p>
http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest/637752#6377521Answer by Erik A. Brandstadmoen for Register DLL in GAC without Assembly ManifestErik A. Brandstadmoen2009-03-12T08:41:27Z2009-03-12T08:41:27Z<p>Is this actually a GAC-able DLL? It doesn't seem like it. Maybe it's just reg-able? Why do you want to GAC it?</p>
http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest/648137#6481371Answer by Dan for Register DLL in GAC without Assembly ManifestDan2009-03-15T17:00:21Z2009-03-15T17:00:21Z<p>Are you sure that "extract[ing] the Visual Studio 2010 & .NET 4.0 CTP from the VHD" doesn't violate the license agreement? If Microsoft wanted you to "run it [VS2010] on my physical box", they would have just made it available as a noraml install.</p>
http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest/885095#8850951Answer by Jason Short for Register DLL in GAC without Assembly ManifestJason Short2009-05-19T21:23:57Z2009-06-02T21:39:34Z<p>"For those interested, I am attempting to extract the Visual Studio 2010 & .NET 4.0 CTP from the VHD and run it on my physical box. As a side note, has this been attempted?"</p>
<p>FYI - At this point there is a full ISO image of Beta 1 you can download and legally run on your desktop if you want.</p>
<p><a href="http://www.vistadb.net/blog/post/2009/05/17/visual-studio-2010-beta-1.aspx" rel="nofollow">VS 2010 beta 1 on MSDN</a></p>
<p>It is only for MSDN subscribers at this point though. Will be added to Microsoft downloads later.</p>
<p>EDIT: It is now open for all to download</p>