active questions tagged assemblies - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:34:02Z http://stackoverflow.com/feeds/tag/assemblies http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/970622/how-can-i-add-a-probingpath-at-runtime-and-not-through-app-config 0 How can I add a probingPath at runtime (and not through app.config)? willem 2009-06-09T15:05:04Z 2009-12-04T23:00:02Z <p>I need to add an assembly probing path <strong>at runtime</strong>, not through the element in app.config. Is there a way to do this? </p> <p>The reason is so that my XOML-only workflow that resides in it's own folder can know where to find it's related DLLs (i.e. containing custom Activities). Currently I am getting fusion errors because the CLR is probing the wrong paths.</p> http://stackoverflow.com/questions/1848237/how-to-configure-visual-studio-to-create-all-projects-including-a-reference-to-a 1 How to configure Visual Studio to create all projects including a reference to a specific dll? Jader Dias 2009-12-04T16:49:35Z 2009-12-04T17:05:03Z <p>I am tired of adding a reference to <code>System.ServiceModel</code> in each project I create. Is there any way to automate this?</p> http://stackoverflow.com/questions/1844949/net-logs-for-assembly-load-error 0 .Net logs for assembly load error? Bin Chen 2009-12-04T04:56:38Z 2009-12-04T12:53:45Z <p>I am trying to modify an application and replace the application into my machine, I have the source code. But every time I put my new binaries into the machine the DLL can't be loaded. I am quite sure the problem is the signing signature, but as there is several DLLs I can't know which one has problems. So I am wondering if an assembly is loaded with error, is there any logs I can analyze to get the root of the cause?</p> http://stackoverflow.com/questions/1845222/how-to-use-sn-exe-vr 0 how to use sn.exe -Vr Bin Chen 2009-12-04T06:25:49Z 2009-12-04T12:53:25Z <p>From the MSDN help, it says the -Vr option is:</p> <p><code> Registers assembly for verification skipping. </code></p> <p>My question is when the -Vr is used, will it only change the assembly file itself or it will change the system registry as well. This matters whether I should issue this command in the development machine or in the final deployed machine.</p> http://stackoverflow.com/questions/1830765/how-do-you-extract-an-assembly-full-name-from-the-assembly-qualified-name-of-a-ty 1 How do you extract an assembly full name from the assembly qualified name of a type? Paul K 2009-12-02T05:05:48Z 2009-12-03T19:46:19Z <p>I have an assembly qualified name of a type, e.g.</p> <blockquote> <p>MyNamespace.MyClass, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</p> </blockquote> <p>I want to extract the assembly full name, i.e.</p> <blockquote> <p>MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</p> </blockquote> <p>Obviously I could do this with simple string parsing, but <strong>is there a framework method for doing this?</strong></p> <p><em>Note: I don't have the type or assembly, just the string, and this is an essential part of the problem, so myType.AssemblyQualifiedName, myType.Assembly.FullName, etc isn't going to help</em></p> http://stackoverflow.com/questions/1832681/when-trying-to-run-exe-file-without-its-dlls-there-is-no-error-message-c 0 When trying to run exe file without its dlls, there is no error message c# song 2009-12-02T12:44:00Z 2009-12-03T19:44:03Z <p>Hi</p> <p>I have a c# application which has a dll added by reference. when I try to run the exe file from windows (after compilation) and the dll is renamed I want the application to show an error message ;</p> <p>Does someone know how can I do it in code?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1833615/difference-between-assembly-createinstance-and-activator-createinstance 0 Difference between Assembly.CreateInstance and Activator.CreateInstance? TheNoob 2009-12-02T15:26:57Z 2009-12-03T19:43:45Z <p>What is the difference between these calls? </p> http://stackoverflow.com/questions/1834768/updating-assembly-causes-error 0 Updating assembly causes error mrblah 2009-12-02T18:11:08Z 2009-12-03T19:43:23Z <p>I updated a single 3rd party assembly, and I am getting an error:</p> <pre><code>Could not load file or assembly 'Some.Assembly, Version=1.0.3.15922, Culture=neutral, PublicKeyToken=62a6874124340d6e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) </code></pre> <p>When I updated this assembly, the version is now <code>1.0.3.23655</code>.</p> <p>Is it because of a strong named assembly that other dependent assemblies are complaining about?</p> http://stackoverflow.com/questions/1841967/is-it-possible-to-share-type-between-asmx-code-generated-proxy-and-a-type-defined 0 Is it possible to share type between ASMX code generated proxy and a type defined in another assembly? Aggelos Mpimpoudis 2009-12-03T18:37:29Z 2009-12-03T19:42:45Z <p>Possible Duplicate: <a href="http://stackoverflow.com/questions/561867/sharing-data-types-from-multiple-web-references">http://stackoverflow.com/questions/561867/sharing-data-types-from-multiple-web-references</a></p> <p>It would be better to start my question with a simple diagram:</p> <p>Client<br> -assembly 1<br> --SharedDataType.cs (SharedDataType class definition - extension)<br> -assembly 2<br> --CodeGeneratedFile.cs (SharedDataType class definition - code generated)<br> --GenerateProxyFile.bat (the wdsl command ...Microsoft Visual Studio 8\SDK\v2.0\Bin\wsdl.exe")<br></p> <p>Server<br> -<a href="http://foofife.com/mywebservice.asmx" rel="nofollow">http://foofife.com/mywebservice.asmx</a> (which exposes the data type SharedDataType)</p> <p>Is it possible for me to have client side, all the added information from assembly 1 to my SharedDataType CLR object too?</p> <p>Thank you!!</p> http://stackoverflow.com/questions/1842311/is-it-possible-to-build-an-assembly-and-force-it-to-a-specific-build 2 Is it possible to build an assembly, and force it to a specific build #? mrblah 2009-12-03T19:28:32Z 2009-12-03T19:31:26Z <p>Is it possible to build an assembly, and force it to a specific build #?</p> http://stackoverflow.com/questions/890166/loading-different-assembly-versions-dynamically-in-net 1 Loading different assembly versions dynamically in .NET Crackerjack 2009-05-20T20:48:56Z 2009-12-03T01:00:02Z <p>Is it better to use System.Assembly.Load or to load the assembly directly into the AppDomain using System.AppDomain.CurrentDomain.CreateInstanceFromAndUnwrap? I am specifically interested in calling different versions of the same assembly running in the same process. I think with CreateInstanceFromAndUnwrap your assembly must have the [serializable] attribute, but why is that?</p> <p>EDIT: The assembly I'm trying to load is NOT in the same location as the caller.</p> http://stackoverflow.com/questions/1784141/how-can-i-provide-an-api-stub-for-an-mef-component 1 How can I provide an API stub for an MEF component? 280Z28 2009-11-23T16:08:13Z 2009-12-02T18:06:11Z <p>The Visual Studio 2010 SDK ships with many assemblies like Microsoft.VisualStudio.Text.Data and Microsoft.VisualStudio.Text.UI that are just stubs. To write an extension for Visual Studio, you reference these assemblies, but set "Copy Local" and "Exact Version" properties of the references to false. When your extension is loaded in Visual Studio, the references are bound to Visual Studio's previously loaded internal implementation of these assemblies.</p> <p>I'd like to provide a new MEF exported component that acts as a Visual Studio service that other MEF packages can <code>[Import]</code>. To use the service, the other components will need to reference my package - but I prefer for them to reference a stub so I can make changes to the internal implementation of my service without breaking other packages that reference it. How can I provide a "stub" assembly containing the publicly visible API components from some arbitrary assembly, such that if you reference the stub it will seamlessly work with the provided implementation at runtime?</p> http://stackoverflow.com/questions/1829531/how-do-i-merge-multiple-net-assemblies-into-a-single-assembly 5 How do I merge multiple .net assemblies into a single assembly? Russell 2009-12-01T22:55:23Z 2009-12-01T22:57:13Z <p>I have a .net application with about 10 assemblies. It would be nice to have them all together as a single assembly. Is this possible? How do I do it?</p> <p>I guess something like a jar file for java applications.</p> <p>Thanks</p> http://stackoverflow.com/questions/1829070/why-do-i-need-nhibernate-dll-referenced-in-my-asp-net-mvc-project 1 Why do I need nhibernate.dll referenced in my asp.net mvc project? mrblah 2009-12-01T21:31:39Z 2009-12-01T21:37:52Z <p>All my data logic is in another data layer project that I reference in my asp.net mvc project.</p> <p>Now if I call:</p> <pre><code>CategoryDAO.GetById(1); </code></pre> <p>Everything works fine. </p> <p>If I call:</p> <pre><code>CategoryDAO.GetBlah(1); </code></pre> <p>VS.NET complains saying </p> <pre><code>"Error 102: The type 'NHibernate.Criterion.Order' is defined in an assembly that is not referenced. You must add a reference to assembly 'NHibernate, Version=2.1.2.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4'." </code></pre> <p>If I add nhibernate.dll as a reference in my web project, it works.</p> <p>Why is this? The logic/code is in my data layer, it is return the same as the call to GetById(1), why do I need to add the reference?</p> http://stackoverflow.com/questions/1751775/binding-redirect-problem-in-net 0 Binding redirect problem in .net Suresh 2009-11-17T21:05:47Z 2009-12-01T08:30:10Z <p>I have a class library called "MyAssembly" that is internally referencing a.dll, b.dll of version 3.1.1.0; I have build the project which outputed MyAssembly.dll. On a different system (box) I have created a web application project and referenced the MyAssembly.dll. the new system has new versions of a.dll and b.dll 4.0.0; I used binding redirect in web.config like below. But still unable to compile the web application. it says missing assembly reference a.dll, version 3.1.1.0.</p> <p>Could any body help in solving this issue?</p> <p>Thanks, Suresh</p> <p> </p> http://stackoverflow.com/questions/1817152/detect-whether-the-assembly-was-built-for-net-compact-framework 3 Detect whether the assembly was built for .NET Compact Framework Andrey Shchekin 2009-11-29T23:33:24Z 2009-11-30T14:20:28Z <p>Having a .NET assembly, how can I detect whether it was built for .NET CF or a full framework?</p> http://stackoverflow.com/questions/1813393/how-can-i-protect-my-assembly-to-being-used-by-someother 2 How can I protect my Assembly to being used by someother? shahjapan 2009-11-28T18:54:46Z 2009-11-29T13:45:23Z <p>how can I protect my assembly, because once I deploy the setup, assembly will be deployed too, and there are chances that user will get the assembly from Program Files, and may add reference to any other project or create new project based on it ! any solution or help would be appreciated thanks.</p> http://stackoverflow.com/questions/1807652/ilmerge-dll-not-merged-in-correctly 0 ILMerge DLL not merged in correctly Fiona Holder 2009-11-27T09:27:30Z 2009-11-27T22:12:09Z <p>In the build process for a .NET C# tool, I have been using ILMerge to merge the assemblies into a single exe. </p> <p>I added a new class library recently, and now the ILMerge is failing. I have remembered to tell it to merge in the new DLL!</p> <p>It is now giving me this error, which I don't really understand:</p> <blockquote> <p>ILMerge.Merge: The assembly 'DataObjects' was not merged in correctly. It is still listed as an external reference in the target assembly.</p> </blockquote> <p>All of the assembly references I have done using 'project' references, and it has not failed in the past.</p> <p>Can anyone explain this error for me, or suggest a workaround please?</p> http://stackoverflow.com/questions/1807324/get-interface-and-object-from-assembly-at-run-time-and-pass-them-to-generic-class -1 Get interface and object from assembly at run time and pass them to generic class Pankaj 2009-11-27T08:01:09Z 2009-11-27T11:27:16Z <p>Hello All I have two assembly's BALL and DALL.BALL have a interface ILoadClassand DALL have a class LoadClass. Now what is my problem that <strong>i need to load these assembly's at run time and pass them LoadClass and ILoadClass to a generic class</strong>. What i did here </p> <pre><code>Assembly MyDALL = Assembly.Load("DALL");// Load DALL Type MyLoadClass = MyDALL.GetType("DALL.LoadClass"); //Get LoadClass obj = Activator.CreateInstance(MyLoadClass); Assembly MyBALL = Assembly.Load("BALL");// Load BALL Type MyILoadClass = MyBALL.GetType("BALL.ILoadClass"); //Get ILoadClass </code></pre> <p>Now CreateInstance in my generic class .CreateInstance</p> <p>How can i pass my LoadClass and ILoadClass to CreateInstance class.</p> <p>var factory = new CreateInstance();</p> http://stackoverflow.com/questions/706700/load-wpf-styles-static-resources-from-an-external-assembly 3 Load WPF styles (static resources) from an external assembly Shimmy 2009-04-01T18:02:37Z 2009-11-27T10:20:55Z <p>I have a few WPF applications and I want all my styles to be in a shared assembly instead of declaring them in each application separately.</p> <p>I am looking for a way so I don't have to change all my <code>Style="{StaticResource BlahBlah}"</code> in the existing applications; I just want to add the reference to this style assembly, and delete it from the current application, so it's taken from the assembly.</p> <p>Is there any way?</p> http://stackoverflow.com/questions/1803540/load-assembly-at-runtime-and-create-class-instance 0 Load Assembly at runtime and create class instance Pankaj 2009-11-26T13:00:35Z 2009-11-26T20:57:56Z <p>I have a assembly. In this assembly I have a class and interface. I need to load this assembly at runtime and want to create an object of the class and also want to use the interface.</p> <pre><code>Assembly MyDALL = Assembly.Load("DALL"); // DALL is name of my dll Type MyLoadClass = MyDALL.GetType("DALL.LoadClass"); // LoadClass is my class object obj = Activator.CreateInstance(MyLoadClass); </code></pre> <p>This is my code. How could it be improved?</p> http://stackoverflow.com/questions/465488/c-load-assemblies-at-runtime 5 C# Load assemblies at runtime Russel 2009-01-21T14:20:06Z 2009-11-26T13:09:16Z <p>Hi</p> <p>Is it possible to instantiate a object at runtime if I only have the DLL name and the class name, without adding a reference to your project ?</p> <p>eg. DLL name : library.dll and class name : Company.Project.Classname</p> <p>The class implements a interface, so once I instantiate the class, I will then cast it to the interface.</p> <p>EDITED :</p> <p>I dont have the absolute path of the dll, so assemlby.LoadFile ect. wont work. The dll might be in the APP root, system32 or even loaded in the GAC. I only have the dll name.</p> http://stackoverflow.com/questions/1694640/can-ninject-load-modules-assemblies-on-demand 1 Can NInject load modules/assemblies on demand? IgorM 2009-11-07T22:20:28Z 2009-11-25T22:10:55Z <p>Are there facilities in NInject that will allow me to load services from other modules (assemblies) on demand like it's done in Unity?</p> http://stackoverflow.com/questions/1797601/add-assembly-reference-dialog 1 add assembly reference dialog codymanix 2009-11-25T15:15:05Z 2009-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/1799161/managing-dynamic-domain-model-w-ddd-context 0 Managing dynamic domain model w/ DDD context Sean Chambers 2009-11-25T18:51:44Z 2009-11-25T18:51:44Z <p>We have a product where the infrastructure/application and UI code is generic for the most part (some views may have to be tweaked but this is only in spark files). The domain model however may change from client to client and this needs to be easily swapped out and replaced with an assembly with potentially more properties/data on the entities, never less.</p> <p>My question is in the scope of physical layout. We are applying DDD to this domain as it is extremely complex, and as such the domain model assembly doesn't depend on anything other than the BCL and one or two supporting tools. We are using visual studio 2008 for development.</p> <p>At the moment, we have the domain model assembly being pulled into consuming assemblies via assembly reference and the dll being dumped in a specific spot on each build that every other project can then reference and use to compile.</p> <p>Is there a "best practice" or an easier way to accomplish this other than assembly references? It seems if you use project references you are bound to a specific version of the outputted assembly, while assembly references you can set SpecificVersion=false to get around this. What we don't want to do is have a new solution file created for every client, although this may be the easiest way so that our build server can just target the specific solution file. Seems like a little overkill however.</p> <p>As we accrue more and more clients there is the potential to have a specific domain model assembly for each client and I want to make sure we can address and manage this requirement properly. Has anyone else done something like this?</p> http://stackoverflow.com/questions/1786917/is-there-a-way-to-specify-assembly-references-based-on-build-configuration-in-vis 1 Is there a way to specify assembly references based on build configuration in Visual Studio? snicker 2009-11-23T23:55:14Z 2009-11-25T10:59:44Z <p>I have a project that adds some extensibility to another application through their API. However, I want to be able to use the same project for multiple versions of their application, because most of the code is the same.</p> <p>However, each version of the application requires a reference to the proper assembly for that version of the software. They load their assemblies into the GAC, so even if I could specify the <em>version</em> of the assembly to use based on build configuration I would be fine. Is there a way to do this from inside of VS or do I need an external build tool?</p> http://stackoverflow.com/questions/1791305/maven-assembly-plugin-run-only-one-descriptor 1 Maven assembly plugin: run only one descriptor jobrahms 2009-11-24T16:42:39Z 2009-11-24T18:52:44Z <p>I have a project which has several custom descriptors written for the assembly plugin. Is there a way to run only one of those descriptors at a time instead of the whole bunch? I tried using the descriptors switch as documented <a href="http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html" rel="nofollow">here</a>, passing in the full path to the one descriptor that I wanted to run, but instead it's running all of the descriptors in my app's main pom file, seeming to ignore the switch I specified.</p> http://stackoverflow.com/questions/1787670/using-the-same-key-for-signing-multiple-assemblies-wise-unwise 0 Using the same key for signing multiple assemblies: wise/unwise? JamieH 2009-11-24T03:53:56Z 2009-11-24T04:00:46Z <p>It's possible to use the same strong name key for multiple related projects/assemblies.</p> <p>I'm interested to know whether there are any drawbacks to using this approach. SPecifically, can it lead to a lack of security?</p> <p>One area I'm thinking about this is in the use of the friend assemblies. </p> http://stackoverflow.com/questions/1762160/c-get-path-of-class-library 0 C# Get path of class library Daniel Skinner 2009-11-19T09:59:03Z 2009-11-22T13:21:55Z <p>I have a class library that uses some xml files found in its own directory.</p> <p>When referencing this library from another project, how do I ensure the library is working from it's own directory?</p> <p>I tried Assembly.GetExecutingAssembly().Location but that still returns the path of the startup project.</p> http://stackoverflow.com/questions/1776503/preventing-gettype-from-throwing-exceptions-on-internal-types 0 Preventing GetType from throwing exceptions on internal types Mikko Rantanen 2009-11-21T19:37:29Z 2009-11-22T06:49:48Z <p>Is there any way to prevent <code>o.GetType()</code> from throwing an exception when called on an object whose type is internal and resides in another assembly? </p> <p>I am wrapping a COM based API inside a .Net assembly so that it is possible to benefit from more native .Net integration (Collection interfaces, streams, exceptions etc.). The collections the original API has have been wrapped in the following way:</p> <pre><code>internal class ComItems : IList&lt;ComItem&gt; { internal ComItems(ComApi.ComItems unmanaged) { this.unmanaged = unmanaged; } public void Add(ComItem item) { this.unmanaged.Add(-1, item.ToUnmanaged()); } // Rest of the IList implementation } </code></pre> <p>Since there are several of these collections I wish to expose them as instances of <code>IList&lt;T&gt;</code> and keep the original type as internal so they don't clutter the namespaces. The issue here is that calling <code>GetType()</code> on one of the returned <code>IList&lt;T&gt;</code> objects results in an exception since the underlying type is an internal one.</p> <p>Are there any ways to prevent this exception?</p> <p>Is there any way to force GetType to return <code>typeof(IList&lt;T&gt;)</code> instead? Not sure if this is any better though since it differe from the standard behaviour.</p> <p>I understand one alternative to reducing clutter would be separating the collections into another namespace. Unfortunately <strong>some</strong> of the collections contain extra methods and are exposed as public types. This would either mean that the collections are divided behind two different namespaces (Main one and 'internal') or then they are all behind the 'internal' one and when people need those specialized collections they'll import that namespaces and those simple collections clutter IntelliSense again.</p>