tagged [assemblies]
How to fix "Referenced assembly does not have a strong name" error
How to fix "Referenced assembly does not have a strong name" error I've added a weakly named assembly to my [Visual Studio 2005](http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2005...
- Modified
- 23 Apr at 19:12
Copy DLL From Assembly For Deployment
Copy DLL From Assembly For Deployment NET on my local machine I have a reference to a DLL on my local assembly folder. I was wondering how I can "package" this dll with the deployment of my website? W...
- Modified
- 23 Feb at 20:16
How to reference a namespace from a specific assembly?
How to reference a namespace from a specific assembly? So here is my problem. - - - So when I try to build, I get the error > The type 'Castle.Core.Interceptor.IInterceptor' exists in both 'c:...\L...
- Modified
- 5 Feb at 17:59
Assemblies in Web.config
Assemblies in Web.config I've been doing .NET development for about a year, but I still don't know what the purpose of the `` section is. What is the section's purpose? Can I delete the assemblies spe...
- Modified
- 10 May at 03:15
Assembly File Version not changing?
Assembly File Version not changing? I have in my assemblyinfo.cs class the code: Calling `System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()` works fine and gives the updat...
- Modified
- 21 Jul at 10:31
C#: In what assembly is SHDocVw.WebBrowser_V1 defined?
C#: In what assembly is SHDocVw.WebBrowser_V1 defined? It's used on several websites which all seem to assume the reader knows what to do to have this type available, but I have no clue. Example site,...
- Modified
- 27 Jul at 16:29
Is there a way to tell if a C# assembly has been compiled with the optimization parameter?
Is there a way to tell if a C# assembly has been compiled with the optimization parameter? Rather, is there a way to tell if it's been compiled with the optimization parameter enabled or disabled. I d...
- Modified
- 20 Aug at 23:34
How to get all types in a referenced assembly?
How to get all types in a referenced assembly? For whatever reason, I can't seem to get the list of types in a referenced assembly. Not only that, I can't even seem to be able to get to this reference...
- Modified
- 11 Feb at 19:43
How to get a type from an unreferenced assembly?
How to get a type from an unreferenced assembly? when the type exists in an unreferenced assembly. For example, when the following is called "localType" is always null (even when using the full namesp...
- Modified
- 29 Aug at 23:17
Is it possible to Load an assembly from the GAC without the FullName?
Is it possible to Load an assembly from the GAC without the FullName? I know how to load an assembly from a filename, and also from the GAC. As My .msi file will put a dll project into the GAC, I'm wo...
- Modified
- 24 Feb at 23:37
Reading Assembly version information of WPF application
Reading Assembly version information of WPF application I am reading version information of my wpf application, but I am not getting the correct version as I have write in `AssemblyInfo.cs` file. In m...
- Modified
- 23 Aug at 21:12
Best practices for assembly naming and versioning?
Best practices for assembly naming and versioning? I am looking out for some good practices on naming assemblies and versioning them. How often do you increment the major or minor versions? In some ca...
- Modified
- 25 Apr at 12:33
Loading an assembly by Bytes loses the location
Loading an assembly by Bytes loses the location I want to load the assembly via the following `var loadedAssembly = Assembly.Load(File.ContentsAsBytes);` the File.ContentAsBytes returns the dll as a `...
- Modified
- 16 May at 20:45
How to load Assembly at runtime and create class instance?
How to load Assembly at runtime and create class instance? 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...
- Modified
- 8 Mar at 10:50
C# Namespaces and Assemblies Best Practice
C# Namespaces and Assemblies Best Practice C#: are there any guidelines, best practices when it comes to dividing a solution up into namespaces and assemblies? Should namespaces normally be nested, wi...
- Modified
- 26 Oct at 10:28
How can I get the assembly file version
How can I get the assembly file version In `AssemblyInfo` there are two assembly versions: 1. AssemblyVersion: Specify the version of the assembly being attributed. 2. AssemblyFileVersion: Instructs a...
- Modified
- 9 Jul at 15:26
How do I find all assemblies containing type/member matching a pattern?
How do I find all assemblies containing type/member matching a pattern? I have a folder (possibly, with nested sub-folders) containing thousands of files, some of them are DLLs, and some of those DLLs...
- Modified
- 4 May at 17:48
Side effects of calling Assembly.Load multiple times
Side effects of calling Assembly.Load multiple times If one calls `Assembly.Load` multiple times does it cause any side effects? e.g. ``` for (int i = 0; i
- Modified
- 16 Feb at 18:19
Programmatically retrieving assembly version of a running service
Programmatically retrieving assembly version of a running service I'd like to access to assembly version information of a service I "control" with ServiceController class. (ie. I'd like to display "2....
- Modified
- 31 Aug at 19:19
Could not load file or assembly for Oracle.DataAccess in .NET
Could not load file or assembly for Oracle.DataAccess in .NET When I try to run a simple program to access oracle I am getting this message > Could not load file or assembly 'Oracle.DataAccess, Versi...
- Modified
- 17 Jul at 23:6
Including resources file for Unit test in C# project
Including resources file for Unit test in C# project I have some functions that read and modify files. In order to make the unit tests independent of any file system issues, I want to include the file...
- Modified
- 23 Oct at 06:50
Is there a way to force all referenced assemblies to be loaded into the app domain?
Is there a way to force all referenced assemblies to be loaded into the app domain? My projects are set up like this: - - - Project "Consumer" references both "Definition" and "Implementation", but do...
- Modified
- 10 Oct at 19:52
Error: Reference to type claims it is defined, but it could not be found
Error: Reference to type claims it is defined, but it could not be found I have a solution with 3 projects: - `ParsersBase``IParseRule`- `ParsersLibrary``ParsersBase``HtmlImageUrlParseRule : IParseRul...
- Modified
- 21 Jul at 03:32
Loading plug-in DLL files, "The invoked member is not supported in a dynamic assembly."
Loading plug-in DLL files, "The invoked member is not supported in a dynamic assembly." We have custom DLL's that are not included in our initial setup file. They are loaded at runtime. This process w...
- Modified
- 24 Jul at 19:58
How can I troubleshoot : System.TypeLoadException?
How can I troubleshoot : System.TypeLoadException? Can you show me a way to troubleshoot ? I am having this exception for an existing project in my solution which I reference from a unit test project ...
- Modified
- 20 Sep at 21:2