active questions tagged gac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:09:38Zhttp://stackoverflow.com/feeds/tag/gachttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915788/gac-and-assembly-versioning0GAC and Assembly VersioningAmitd2009-12-16T16:20:24Z2009-12-16T16:20:24Z
<p>hi guys,<br>
i have to deploy few assembly to GAC.<br>
I just had a few questions about (my) understanding of GAC.
really confuses me.</p>
<p>I want to know which versions to change assembly and file version.<br>
What are possible combinations in which GAC dll will be replaced by installing application.
and basic management for GAC files. </p>
<p>I will explain my question using following example for better understanding of GAC ::</p>
<p>Suppose i have products A and B .</p>
<p>Both A and B refer to myfile.dll installed in GAC.<br>
(i) assembly version : [1.0.0.0]<br>
(ii) assembly file version : [2.0.0.0] (intentionally different to avoid more confusion) </p>
<p>Q1]Suppose i have a bug fix that applied in myfile.dll.
Then which version should i change?</p>
<p>Q2]Suppose i have new version of A say 'ANEW' .then which version should be changed so that
both A,B ANEW can reside side by side.</p>
<p>Q3] suppose if i have 'A' installed with myfile.dll present in GAC and now i try to install
'B' which has gac dll with bug fixes ..then which versions to change so that change reflects in 'A'.</p>
<p>Q4]same as Q3 but B's change should not reflect in 'A'. </p>
<p>Q5]Suppose 'A' is installed with myfile(1.0.0.0). Now suppose 'B' is installing with
myfile(1.x.y.z).. will the GAC file be replaced?</p>
<p>Q6]Suppose 'A' is installed with myfile(1.0.0.0). Now suppose 'B' is installing with
myfile(2.x.y.z).. will the GAC file be replaced?</p>
<p>Q7]Suppose 'A' is installed with myfile (1.0.0.0). Now suppose 'B' is installing with
myfile(1.0.0.0) assuming the version is not changed.. will the GAC file be replaced?</p>
<p>Q8]Also how are GAC dlls removed .is there any criteria for removal?</p>
<p>i guess questions are bit confusing but hope you guys know what im asking.</p>
<p>If you guys have any more possibilites pls feel free to add :)
if any of possibilties is invalid,just ignore ;)</p>
<p>thx
Amitd</p>
<p>PS: Related to this topic <a href="http://stackoverflow.com/questions/1900708/net-assembly-dll-sharing-and-deploying">net-assembly-dll-sharing-and-deploying</a></p>
http://stackoverflow.com/questions/244431/if-i-have-two-assemblies-with-the-same-name-in-the-gac-how-do-i-tell-net-which2If I have two assemblies with the same name in the GAC, how do I tell .Net which to use?Electrons_Ahoy2008-10-28T19:03:38Z2009-12-16T14:36:48Z
<p>I have two assemblies with the same name in the Global Assembly cache, but with different version numbers. How do I tell my program which version to reference?</p>
<p>For the record, this is a VB.Net page in an ASP.Net web site.</p>
http://stackoverflow.com/questions/1908000/using-loadcontrol-in-a-sharepoint-webpart0Using LoadControl in a SharePoint webpartantik2009-12-15T14:56:58Z2009-12-15T14:56:58Z
<p>I'm building a SharePoint webpart that I'm trying to add to the DisplayForm.aspx page of a custom list in SharePoint. This webpart will be using the SharePoint object model to retrieve fields from my list items.</p>
<p>I've accomplished the addition of the webpart by adding an <code><AllUsersWebPart></code> block in the <code><Form></code> block for the DispForm and I'm able to load that webpart just fine. I'd like the webpart to call LoadControl and load an .ascx file containing my control's layout and the associated code behind.</p>
<p>All of this is deployed via a WSP into SharePoint. As such, I'd like all configuration to occur from my <code>manifest.xml</code> file. This has proven difficult for the following reasons.</p>
<p>I would prefer to deploy the webpart assembly to the web application's BIN. Starting down this approach, I've defined NamedPermissionSet in my <code>manifest.xml</code> <a href="http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/11/20/deploying-a-web-part-with-code-access-security-in-visual-studio-2010-sp2010.aspx" rel="nofollow">as described by Cory Roth</a> as follows:</p>
<pre><code><PermissionSet class="NamedPermissionSet" version="1" Description="Permission set for my webpart">
<IPermission class="AspNetHostingPermission" version="1" Level="Minimal" />
<IPermission class="SecurityPermission" version="1" Flags="Execution,ControlPrincipal,ControlAppDomain,ControlDomainPolicy,ControlEvidence,ControlThread" />
<IPermission class="Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" version="1" ObjectModel="True" />
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="UserName" />
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="$AppDir$" Write="$AppDir$" Append="$AppDir$" PathDiscovery="$AppDir$" />
</PermissionSet>
</code></pre>
<p>I then discovered that the above <a href="http://blogs.msdn.com/chandru/archive/2009/06/01/cas-in-sharepoint.aspx" rel="nofollow">is not sufficient for calling LoadControl</a> which really needs something closer to Full permission. Instead, I get a "Cannot find file: /path/to/my/control".</p>
<p>I can hack a fix here (and it works) by setting <code>Unrestricted="true"</code> in the <code>wss_custom_wss_minimaltrust.config</code> file in <code>%HIVE%\TEMPLATE\CONFIG</code> but this is not a solution I want to maintain nor am I convinced my production administrators would be pleased with the approach.</p>
<p>Fine: I'll deploy the webpart assembly to the GAC. That moves me further along, but it's not a complete fix. With my assembly in the GAC, SharePoint calls into my assembly (which is working because I can attach my debugger to the IIS process and it breaks before my LoadControl call as expected) and appears to to successfully find my control file and load it. However, it throws and exception and dies reporting "Could not load type 'WebPart.MyControlCodeBahindType'". The type exists in the same assembly in the GAC which SharePoint has already successfully called into just to load the webpart that calls LoadControl. .</p>
<p>Why might something that's in the GAC not be able to load? Remember: this all works if I elevate permissions in the above hack so I feel that's sufficient to demonstrate that the web part assembly does contain the class that my .ascx is looking for.</p>
<p>Is there a work around that I can adopt in my WSP that will allow me to set <code>Unrestricted="true"</code> as described in my hack above (or similar?)?</p>
http://stackoverflow.com/questions/1900708/net-assembly-dll-sharing-and-deploying4.Net Assembly /dll Sharing and DeployingAmitd2009-12-14T12:40:55Z2009-12-15T10:16:18Z
<p>hi guys,</p>
<p>We have 3 software products which use the same .net dlls(code + legacy).<br>
All these use common functionality present across 3/4 dlls. </p>
<p>i wanted to know how and where to deploy these dlls.<br>
And which is the most standard way of doing this.</p>
<p>S1] Along with each product in its install dir -- probably easiest way to do.
(but if any updates are to happen in the shared dll ..it has to be done for all 3 dlls.)</p>
<p>S2]Put it in common files folder? </p>
<p>S3] Does System GAC help in this?<br>
(Put all 3 in GAC and the code is shared.but im worried about versioning?)</p>
<p>Also how to build a deployable setup for such projects:</p>
<p>D1]pack all dlls in one setup.each setup has its own copy.<br>
but suppose if someone installs software A, then for software B the shared files are already present in the system.</p>
<p>D2]deploy common files in a separate setup and pack with each.try to detect if files are already present if yes dont deploy.(this still doesnt help setup size)<br>
Common folder - should it be GAC or some folder on system?
Involves complex setup as it will require check versioning of different shared files.</p>
<p>Also suppose if newer version of the software is to be released and it has to coexist with older version..<br>
how to maintain compatabilty across multiple versions?</p>
http://stackoverflow.com/questions/1427124/how-to-add-vb-net-class-to-gac-and-use-it-in-code-behind2How to add VB.NET Class to GAC, and use it in Code-BehindNJITBEN2009-09-15T13:17:18Z2009-12-14T23:00:34Z
<p>I created a VB.NET Class, and created a strong key, and added it to the <a href="http://en.wikipedia.org/wiki/Global%5FAssembly%5FCache" rel="nofollow">GAC</a> using the GacUtil. That part has gone smoothly. The Assembly is installed in the GAC and seems to be installed/configured correctly.</p>
<p>FYI, the assembly is a Class called Tester, that exposes one public static method called HelloWorld, which returns a string, "Hello World".</p>
<p>The next step was to create a test web application (VB.NET and ASP.NET 2.0), using Visual Studio 2005, Windows XP SP3. I created the test web application and added the following to the web.config file's configuration section.</p>
<pre><code><assemblies>
<add assembly="BenGACTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=3e5b6cecb56999ca" />
</assemblies>
</code></pre>
<p>I then added some inline code to my aspx page as follows:</p>
<pre><code><div><%=BenGACTest.Tester.HelloWorld()%></div>
</code></pre>
<p>When I run the page in the web browser, indeed everything works as expected. The page outputs "Hello World" and all seems good.</p>
<p>However, I don't know how to use this code in the <a href="http://en.wikipedia.org/wiki/ASP.NET#Code-behind%5Fmodel" rel="nofollow">code-behind</a> page. I try to import the assembly, just like "imports system" and it doesn't appear in the IntelliSense.</p>
<p>Also, when I try to add the assembly as a reference to the project, the assembly is not found in the list of installed assemblies. I believe this is because the list is pulled from the registry, not from a dynamic list of installed assemblies.</p>
<p>My goal is to add the assembly via the web.config file, not by adding it as a project reference, and to use the assembly in the code-behind page.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1121165/creating-a-setup-msi-to-register-regasm-an-assembly2Creating a setup (MSI) to register (regasm) an assemblySteve Willard2009-07-13T18:15:23Z2009-12-14T13:26:58Z
<p>Heya,</p>
<p>I'm working on a toolbar for IE using .NET. Currently, I insert my .NET assemblies with gacutil, and register my COM assembly with regasm. </p>
<p>I want to create a setup (MSI) for the project, but I can't seem to register the types. I have everything in GAC folder of the setup project, but I can't find a way to essentially run regasm - and I don't want to include it in the project. The /regfile option is not the same as registering the types.</p>
<p>I've tried using tlbexp to export a .tlb file and include it in the Application folder of the MSI but it doesn't seem to fix the problem. If the run the MSI installer and manually run regasm on my assembly, everytihng works fine. Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/968875/official-way-to-deploy-assemblies-into-the-gac3"Official" Way to deploy Assemblies into the GAC?Michael Stum2009-06-09T08:36:37Z2009-12-14T13:14:13Z
<p>I just wonder - if I need to deploy an assembly into the GAC, what is the "official" way of doing it?</p>
<p>Currently we either manually drag/drop into the c:\windows\assembly folder or we use gacutil.exe. The first way is obviously not the good one (it's manual process after all), and gacutil is part of the SDK and not available per default on production servers.</p>
<p>Are there any Microsoft deployment Guidelines?</p>
http://stackoverflow.com/questions/1471796/how-do-you-add-a-dll-to-the-gac-from-an-installscript-project-in-installshield1How do you add a DLL to the GAC from an InstallScript Project in InstallShield?Anthony D2009-09-24T13:46:12Z2009-12-12T21:49:30Z
<p>How do you add a DLL to the GAC from an InstallScript Project in InstallShield? I tried added [GLOBALASSEMBLYCACHE] as a destination to the component, with no luck. It tells me that is not valid data for the destination.</p>
http://stackoverflow.com/questions/1891278/using-wix-to-put-an-assembly-into-both-the-gac-and-install-path0Using WiX to put an assembly into both the GAC and Install Pathdskiles2009-12-11T22:27:57Z2009-12-11T22:48:23Z
<p>I'm just starting to learn how to use WiX and I'm running into a snag. My package uses a third party library that requires some file to exist both in the GAC and the package installation directory.</p>
<p>Using WiX, I can make files show up in the installation directory, or in the GAC, but not both.</p>
<p>Is there any way to work around this?</p>
http://stackoverflow.com/questions/1889422/msi-removes-required-assembly-on-upgrade-install-but-replaces-it-on-repair0MSI removes required assembly on upgrade install, but replaces it on RepairKen2009-12-11T17:04:11Z2009-12-11T20:09:44Z
<p>I'm experiencing some weirdness related to an MSI installation upgrade, perhaps someone out there can help me:</p>
<p>I have two MSIs, an original and an upgrade:</p>
<ul>
<li>MSI version 1.0
<ul>
<li>Contains a .NET assembly, foo.dll, to be installed to the GAC</li>
<li>foo.dll is of type "Assembly" (not "Output") within the MSI file system gui.</li>
</ul></li>
<li>MSI version 2.0
<ul>
<li>Also contains foo.dll (same version), plus a bunch additional assemblies.</li>
<li>I would like MSI 2.0 to totally replace 1.0, so I set RemovePerviousVersion to False.</li>
</ul></li>
</ul>
<p>Now the two installation scenarios:</p>
<ol>
<li><p>I run MSI 1.0. Foo.dll is installed to the GAC properly. I then run MSI 2.0 and <strong>Foo.dll seems to be removed from the GAC</strong>, but the additional assemblies are there. I have no idea way. However, if I go to Add/Remove programs and click "Repair," Foo.dll gets put in.</p></li>
<li><p>MSI 1.0 is never installed and I run MSI 2.0. Foo.dll (and the additional assemblies) <strong>is</strong> there, as expected.</p></li>
</ol>
<p>Any ideas why the foo.dll gets removed during the upgrade?? Thanks in advance!</p>
<p>-Ken</p>
<p><strong>UPDATE</strong> After some refreshing/rebuilding, it seems to work now. However, now it does not remove foo.dll when I uninstall the MSI, even though its property "Permanent" is set to false. Not as big of a problem, but it would be nice to know what was going on.</p>
http://stackoverflow.com/questions/1889906/registering-dlls-in-the-gac-using-visual-studio-installer0Registering dll's in the GAC using Visual Studio InstallerVidar2009-12-11T18:14:28Z2009-12-11T19:11:33Z
<p>I want to register/unregister my project's assemblies in the GAC using Visual Studio's Setup installer project.</p>
<p>I am thinking of using a custom installer to utilise the Install() and Uninstall() methods to write commmandline (in code) commands via the gacutil.exe.</p>
<p>Is there an easier way - or is this the way you would do this? Please keep responses within the scope of using Visual Studio tools (not Installshield or WISE etc)</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/1881850/cant-access-the-assembly-that-installed-into-the-gac0Can't access the assembly that installed into the GACPasha2009-12-10T15:41:05Z2009-12-10T18:07:37Z
<p>I am sorry if this is stupid questions, but i've spend two days on this, and can't get it to work.
Here's what I did:</p>
<ol>
<li>Create a new class library project</li>
<li>Added a simple method <code>sayHi()</code> that returns a string </li>
<li>In the project properties checked "sign the assembly" and used a strong name key file</li>
<li>Compiled the application and copied the DLL to c:\windows\assemblies (and i also tried using the gacutil tool with similar results)</li>
<li>Added the following to machine.config <code><compilation><assemblies><add assembly="gacTestClass, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31418215e131202e" /></code>. This works just fine, because if i misspell the assembly name, any .net app will fail and complain about that line. </li>
<li>Using the assembly cache viewer in the .NET framework configuration tool i can see the assembly in the cache. </li>
<li>Now, when i try to use that, my app fails when i do either <code>using gacTestClass</code> or <code>gacTestClass.gacTest.sayHi()</code>. I get an error saying that the type or namespace could not be found. </li>
</ol>
<p>Any help is appreciated. </p>
<p>EDIT:</p>
<p>Ok, i followed a suggestion and I will try to make this work with web.config, rather than machine.config. </p>
<p>I added the following to my web.config <code><compilation><assemblies><add assembly="gacTestClass, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31418215e131202e" /></code> and made sure that it works by misspelling the name, and watching the app fail.
Now, when I try to add <code>using gacTestClass</code> to the top of my .cs file, i get an error saying that the type or namespace could not be found. </p>
<p>Just in case, here's the code the for the gacTestClass</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
[assmbly:AssemblyKeyFile("sayHi.snk")]
namespace gacTestClass {
public class gacTest {
public string sayHi() {
return "Hello there!";
}
}
}
</code></pre>
http://stackoverflow.com/questions/1869822/changing-windows-workflow-assemblies-while-running0Changing windows workflow assemblies while running?jfar2009-12-08T21:03:22Z2009-12-09T10:04:30Z
<p>We’re about to deploy version 1.2 of a software project I was working on, up from version 1.1. As it stands right now, there are a few outstanding workflows that are still in progress that will break if we update the workflow and supporting assemblies to version 1.2 because the serialized workflows will be looking for version 1.1 of those assemblies.</p>
<p>One possible solution is to put the 1.1 versions of the assemblies in the GAC. Unfortunately that isn’t possible because the 1.1 versions were never given a strong name.</p>
<p>If I remember correctly, there is a way to include a file that tells the .Net runtime that version 1.2 assemblies are ok to load when looking for version 1.1 assemblies but I can’t remember what that is called. I think it’s some sort of xml file. Does anyone remember what this is called and know any links to documentation?</p>
<p>An alternate solution, for this iteration, is for me to change the build so that the assemblies needed by the workflow do not have their version number incremented and they use the specific version number from the 1.1 assemblies. This will work because nothing has changed in them, but it’s not a great long term solution.</p>
<p>Long term I’ll have to start signing the required assemblies with a strong name so they can be put in the GAC. Any potential issues here?</p>
http://stackoverflow.com/questions/1178608/monitor-how-often-assemblies-are-loaded-from-gac1Monitor How Often Assemblies Are Loaded From GAC Ryu2009-07-24T16:01:30Z2009-12-08T04:52:18Z
<p>I currently have 3 servers each running different applications. Occasionally through installation misconfiguration and code re-factoring these machines are left with assemblies in the GAC that are no longer being referenced or used by anything.</p>
<p>Are there any tools anybody is aware of to monitor / log how often, or when certain assemblies are loaded from the GAC? So after monitoring our servers for a certain amount of time I can feel confident about cleaning up the cruft.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1851651/strong-name-is-must0Strong name is mustSumeet2009-12-05T09:06:57Z2009-12-05T09:31:58Z
<p>Is it necessary to provide strong name to an assembly before putting it in GAC?</p>
http://stackoverflow.com/questions/1849000/can-i-always-expect-assemblies-that-are-part-of-the-net-framework-itself-reside0Can I always expect assemblies that are part of the .NET Framework itself reside in the GAC?unforgiven32009-12-04T19:03:10Z2009-12-04T19:07:55Z
<p>I'm mostly just curious about this. Do assemblies that would be considered "part" of the .NET Framework itself <strong>always</strong> exist in the GAC?</p>
http://stackoverflow.com/questions/1797601/add-assembly-reference-dialog1add assembly reference dialogcodymanix2009-11-25T15:15:05Z2009-11-25T21:38:53Z
<p>Is there a way to use visual studio's "add assembly reference dialog" (or something similar) in my own application? I need it for dynamic code generation and compilation.</p>
<p>This is not simply an OpenFileDialog, since it additionally looks into the GAC and so on, so it will be very complicated to do it on my own, I think.</p>
<p>If this is not possible, how can I get a list of all assemblies from the GAC?</p>
http://stackoverflow.com/questions/1767171/see-if-any-application-has-a-dll-from-the-gac-loaded1See if any application has a DLL from the GAC loadedrwmnau2009-11-19T22:58:49Z2009-11-20T23:02:40Z
<p>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 them, or at least tell the user.</p>
<p>For example, Biztalk seems to load the DLLs it needs the first time they're used, and then replacing them keeps the old copy in memory until the Host Instances are restarted - something I could easily do as part of my deployment.</p>
<p>Is there a way to tell using .NET which processes have loaded a particular DLL from the GAC?</p>
<p>UPDATE:</p>
<p>Some further investigation shows that both Process Explorer has this functionality, and another Sysinternals tool, <a href="http://technet.microsoft.com/en-us/sysinternals/bb896656.aspx" rel="nofollow">ListDLL</a>, does exactly what I want to be able to do. I'd like to know how they do it, since I'd love to replicate this functionality in my application without having to include and screen-scrape ListDLL (if that's even allowed inside the license).</p>
http://stackoverflow.com/questions/1769248/add-c-dll-in-the-gac0Add c++ dll in the GACZee992009-11-20T09:14:02Z2009-11-20T09:20:11Z
<p>I have a dll that i created using C++ and for a reason my dll should be placed in the GAC.
for all other dll's created with managed code, i sign them and drop them in the GAC, how can i do the same with the c++ dll?</p>
<p>Thanks for your quick help.</p>
http://stackoverflow.com/questions/1754006/is-sharepoint-local-bin-deployment-possible0Is Sharepoint local bin deployment possible?Wololo2009-11-18T06:16:52Z2009-11-18T16:55:57Z
<p>I’ve inherited a SharePoint solution where all the projects have strong names and are deployed to the GAC. </p>
<p>I find that its difficult working with projects that are signed, it slows down development, testing and makes debugging difficult.</p>
<p>So, is it possible that SharePoint projects, WebParts, Codebehinds etc be deployed to the local bin instead of the GAC? Is it considered bad practice to deploy to the local bin? </p>
http://stackoverflow.com/questions/1200966/how-can-i-automate-the-installation-of-assemblies-to-the-gac-over-a-network0How can I automate the installation of assemblies to the GAC over a network?Jason Irwin2009-07-29T15:07:38Z2009-11-18T08:35:17Z
<p>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 to the GAC over the network?</p>
http://stackoverflow.com/questions/134148/do-assemblies-placed-in-the-gac-gain-full-trust3Do assemblies placed in the GAC gain full trust?drraude2008-09-25T15:52:30Z2009-11-17T20:41:59Z
<p>I've been hearing conflicting facts about this topic. What is correct?</p>
http://stackoverflow.com/questions/1556016/asp-net-with-delphi-2007-for-net-could-not-load-file-or-assembly-the-located0ASP.NET with Delphi 2007 for .NET. Could not load file or assembly … The located assembly's manifest definition does not match the assembly referenceCary Jensen2009-10-12T17:58:36Z2009-11-16T19:59:09Z
<p>This one’s a head scratcher. Here’s the deal.</p>
<p>While deploying a beta copy of an ASP.NET application built with Delphi 2007 for .NET to a test server I encountered an odd problem. The application was unable to start because it could not load the correct version of an ADO.NET data provider that I was using. </p>
<p>Only by including a version of the old assembly in the bin directory would the application run. However, I don’t want to be tied to this older .NET data provider, so I am determined to find a solution to this problem.</p>
<p>I originally compiled the project with the .net data provider assembly used as Copy Local, which should have caused Delphi to use a copy of that version of the assembly that I selected when I added it to the References folder in the Project Manager. The actual assembly that I selected was version 9.10.2.0, and that is the version of the assembly that appears in the bin directory, along with the application. However, at runtime the application was trying to bind to an earlier version of the same assembly, 9.0.2.7. </p>
<p>(Actually, this problem occurs whether or not I use the GAC version of Copy Local, so I don’t think this is the issue.)</p>
<p>While investigating this problem I created a new project, and added a reference to the 9.10.2.0 assembly. Still, both the .NET 2.0 Configuration Utility and Reflector showed that the application compiled with a reference to the 9.0.2.7 assembly. </p>
<p>Inspecting the GAC I saw that both 9.0.2.7 and 9.10.2.0 versions were registered. Attempting to remove the 9.0.2.7 version fails, since that version of the provider was still referencing the assembly in the GAC.</p>
<p>I went into the registry and manually removed all references to the 9.0.2.7 provider. I then was able to delete it from the GAC. This didn’t change anything. Removing the assembly from an existing application and then adding the 9.10.2.0 version back, then compiling, still resulted in the wrong assembly information being inserted into the application. As before, creating a new application that referenced the 9.10.2.0 assembly didn’t work, as a reference to 9.0.2.7 was still being inserted into the executable.</p>
<p>I’ve checked the Delphi library search path. I also removed every instance of the old assembly files from the machine altogether (including from the ASP.NET Temporary Files directory). I still got the problem. I tried using Issam Ali’s AppManifest utility to manually adjust the manifest, but apparently it does not support ASP.NET applications in Delphi 2007 for .NET.</p>
<p>So, the GAC no longer contains references to 9.0.2.7, there are no references to it in the registry, there are no paths to the old provider directory in the project or Delphi options dialogs, the old provider assembly is not on the file system, and 9.0.2.7 does not appear in any of the project files. Nor does it appear in web.config, machine.config, or any other file I checked. Nonetheless, Delphi insists on using this version of the assembly anytime I reference the 9.10.2.0 version of the assembly. (Yes, I restarted Delphi, and also restarted the Virtual Machine in which this development was being performed.)</p>
<p>Even after uninstalling the 9.10.2.0 data provider (the older one was already uninstalled), and reinstalling it, adding the data provider reference to an application results in the runtime application attempting to load the old provider (even though no reference to the old provider apparently remains in the system). </p>
<p>I’ve tried other solutions (which are worth mentioning here), but none worked. Anybody seen this? I am going to continue working on this problem, but I’d love to hear suggestions. I just can’t get Delphi to stop inserting the old assembly information into the project.</p>
<p>For grins I’m including the error log from the failure. This log essentially duplicates the information I get from the fusion log. This log is from one of the simple apps I created after removing the 9.0.2.7 assembly from the GAC. Notice that it’s looking for the old version of the provider from the outset.</p>
<p>Assembly manager loaded from: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable c:\windows\microsoft.net\framework\v2.0.50727\aspnet_wp.exe
--- A detailed error log follows. </p>
<p>=== Pre-bind state information ===
LOG: User = TRAINING8A\ASPNET
LOG: DisplayName = Advantage.Data.Provider, Version=9.0.2.7, Culture=neutral, PublicKeyToken=e33137c86a38dc06
(Fully-specified)
LOG: Appbase = file:///C:/Inetpub/wwwroot/TestAdsVer2/
LOG: Initial PrivatePath = C:\Inetpub\wwwroot\TestAdsVer2\bin</p>
<h1>Calling assembly : TestAdsVer2, Version=1.0.3572.17384, Culture=neutral, PublicKeyToken=null.</h1>
<p>LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Inetpub\wwwroot\TestAdsVer2\web.config
LOG: Using host configuration file: c:\windows\microsoft.net\framework\v2.0.50727\aspnet.config
LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Post-policy reference: Advantage.Data.Provider, Version=9.0.2.7, Culture=neutral, PublicKeyToken=e33137c86a38dc06
LOG: Attempting download of new URL file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/testadsver2/07545aea/3d068a5/Advantage.Data.Provider.DLL.
LOG: Attempting download of new URL file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/testadsver2/07545aea/3d068a5/Advantage.Data.Provider/Advantage.Data.Provider.DLL.
LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/TestAdsVer2/bin/Advantage.Data.Provider.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Minor Version
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated</p>
http://stackoverflow.com/questions/1681148/gac-comparison-tool-for-multiple-servers1GAC Comparison Tool for multiple servers?David2009-11-05T15:08:59Z2009-11-05T16:38:44Z
<p>Does anyone know of a tool that would allow me to generate a report of the assemblies installed to the .NET GAC on all the servers in my web farm? (30-40 servers)</p>
<p>Or alternatively, does anyone have a pointer or a link on some way of accessing the information programmatically, via WMI, or remote registry query, or some other technology?</p>
http://stackoverflow.com/questions/1633146/installing-a-modified-version-of-asp-net-mvc0Installing a modified version of ASP.NET MVCDave Hanna2009-10-27T19:32:38Z2009-10-28T10:28:53Z
<p>I have made a relatively simple change to the MVC 1.0 source code to correct a bug in the DropDownList HtmlHelper (<a href="http://stackoverflow.com/questions/1614923/persisting-selected-value-in-mvc-dropdownlists">discussed in another question</a>).</p>
<p>I was able to rebuild the MVC solution, ran all the tests, including the one I hadd added to show the bug I was fixing, and built a new DLL.</p>
<p>But how do I use that?</p>
<p>I tried moving the new MVC dll into the project and changing all the project references to point to it, but when I try to run the MVC website, it's throwing an exception saying there's a conflict between my version of MVC and the MVC in the GAC.</p>
<p>I tried to use gacutil.exe to remove the one from the GAC, but it says it can't do that because it would make another program (the Microsoft Installer? fail. </p>
<p>What do I have to do to install my newly built version in place of the "official" version?</p>
http://stackoverflow.com/questions/1606867/how-to-prevent-a-net-application-to-use-an-assembly-from-the-gac4How to prevent a .NET application to use an assembly from the GAC?Flo2009-10-22T12:28:28Z2009-10-22T16:58:24Z
<p>Can I configure a .NET application in a way (settings in Visual Studio) that it references a "local" assembly (not in <a href="http://en.wikipedia.org/wiki/Global%5FAssembly%5FCache" rel="nofollow">GAC</a>) instead of an assembly within the GAC, although both assemblies have the same name and the same version? </p>
http://stackoverflow.com/questions/1606880/what-is-the-global-assembly-cache0What is the Global Assembly Cache? [closed]Himadri2009-10-22T12:30:08Z2009-10-22T12:50:36Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1268342/what-is-the-gac-in-net">What is the GAC in .NET?</a> </p>
</blockquote>
<p>What is Global Assembly Cache and how would I add assemblies to it?</p>
http://stackoverflow.com/questions/1606273/net-assembly-loading-priorities4.NET assembly loading prioritiesDante2009-10-22T10:17:22Z2009-10-22T10:27:34Z
<p>I have a solution with 3 projects (GUI, BL and DAL). The DAL assembly is signed and deployed in the GAC.</p>
<p>When I build the solution the DAL is compiled and the assembly placed in the bin folder of the main project. But when I run the application, it loads the GAC version instead of the local one. Why is this?</p>
<p>I realized that because the version in the GAC was not the latest one and some methods were missing, although it compiled fine.</p>
<p>Does the GAC have priority over the local bin folder?</p>
<p>Tks in advance</p>
http://stackoverflow.com/questions/1600970/wcf-client-dll-internet-delivery-problem0WCF Client DLL Internet Delivery ProblemWilliam Daniel2009-10-21T13:52:00Z2009-10-21T21:41:33Z
<p>We are creating a WCF service with a companion client DLL (.Net) that we will be delivering to a user's GAC via a web page. The DLL knows how to communicate with and how to interface with the service, and will allow the web page to communicate with the WCF service via client-side Javascript calls. The user's machine will be executing the DLL's functionality, not the server. With it data will be transferred to the target server.</p>
<p>This works in theory (and practice) over our internal network. The network is, of course, in a trusted zone so there are no problems with delivery, GAC install and DLL utility. The client-server pair works as expected. We can download the .Net DLL with an object tag, install it in the GAC and use it easilly.</p>
<p>In order for an internet user to be able to download the client .Net DLL however there are security procedures that need to be put in place. We do not have the expertise yet to know exactly what they are, but we are aware that we will need to at least sign the DLL with a trusted certificate. Beyond that, we are unsure.</p>
<p>The question then is what do we do from here?</p>
http://stackoverflow.com/questions/1599575/enumerating-assemblies-in-gac1enumerating assemblies in GACeffkay2009-10-21T09:02:55Z2009-10-21T09:38:21Z
<p>How can I enumerate all available assemblies in GAC in C#?</p>
<p>Actually I am facing an issue with a stupid code - the assembly called Telerik.Web.UI.dll is referred and used in project - this particular DLL is not present in BIN folder. And application is working fine on the server - but on my machine, obviously compiler is giving error. Ex-Developer insists that it is not in GAC on the server and 'it is what it is'. Now I need to check whether this DLL is registered in GAC or not.</p>
<p>Help will be appreciated.</p>
<p>Good Day;</p>