hot questions tagged gacutil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:27:22Z http://stackoverflow.com/feeds/tag?tagnames=gacutil&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest 2 Register DLL in GAC without Assembly Manifest tsilb 2009-03-12T00:03:18Z 2009-12-14T12:59:37Z <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 &amp; .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/1042200/ngen-and-gacutil-best-practices 3 NGen and Gacutil best practices Sophia Lawrence 2009-06-25T04:32:02Z 2009-07-07T21:36:01Z <p>Hi there,</p> <p>This is my first post, so please forgive me if this isn't written well.</p> <p>I've been working on a WinForms application which has about 5 referenced assemblies - written by us, and about 8 referenced assemblies by third parties (we wont be hoping to update them in the future unless something goes terribly wrong - Infragistics/DevExpress components!).</p> <p>Our startup times are a little too high on cold boots, what I'm wondering is whether adding them to the Gac and ngen'ing them is the way to go.</p> <p>When we're installing into the NGen cache, does it need to be in the gac too? Whats the connection between the two? Which should I be aiming for? We have one exe, I'd do an ILMerge but I'm not sure that will work in our scenario - long story.</p> <p>Also, is it possible to get how much memory my exe is taking - much like the Java applications do (like Netbeans!)</p> <p>Thanks</p> http://stackoverflow.com/questions/885261/location-of-gacutil-with-vs-2008 2 Location of Gacutil with vs 2008 Shrage Smilowitz 2009-05-19T22:01:38Z 2009-05-19T23:42:19Z <p>I want to run a post build script that installs the dll in the gac, but i have to use the full path to gacutil.exe, where can i find this? i have visual studio 2008</p> http://stackoverflow.com/questions/679064/using-powershell-to-register-a-file-in-the-gac 0 Using Powershell to Register a file in the Gac James Turns 2009-03-24T20:12:42Z 2009-03-25T03:40:03Z <p>Is there a simpe way to in powershell (I imagine using gacutil.exe) to read from a text document a path\assembly and register it in the GAC? So for example a .txt file that looks like:</p> <p>c:\test\myfile.dll c:\myfile2.dll d:\gac\gacthisfile.dll</p> <p>The powershell script would read that into a stream and then run gacutil on each of those assemblies found? I guess it would be something like:</p> <pre><code>#read files into array? foreach ($file in Get-ChildItem -Filter "*.dll" ) { Write-Host $file.Name C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\gacutil.exe /nologo /i $file.Name } </code></pre> http://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista 1 Register Multiple Assemblies to the GAC in Vista Evan 2008-08-29T18:50:51Z 2008-08-29T19:14:24Z <p>I've got a whole directory of dll's I need to register to the GAC. I'd like to avoid registering each file explicitly- but it appears that gacutil has no "register directory" option. Anyone have a fast/simple solution?</p> http://stackoverflow.com/questions/230872/visual-studio-post-build-script-error-calling-gacutil 0 visual studio post-build script error calling gacutil. josh 2008-10-23T18:27:35Z 2008-10-23T19:43:33Z <p>I'm on vista, with VS2005 running as admin. Both vs2005 and vs2008 are installed. If I explicitly use the path to gacutil, it works, but not if I only call gacutil like this: </p> <pre><code>if NOT $(ConfigurationName) == Release gacutil /f /i "$(TargetPath)" </code></pre> <p>I would just update the post-build script, but I've been asked to leave it alone. It's a project for a sister company. The path to gacutil is in Visual Studio environment variables, so it should be able to find it. (Tools -> Options -> Projects and Solutions -> VC++ Directories) </p> <p>Is there some way to tweak visual studio or windows environment variable to get the above post-build script to work? I need to it to build, because it's a dependency of a project I need to code.</p> <p>TIA, -j</p>