Tagged Questions

8
votes
2answers
2k views

Best way to check if a DLL file is a CLR assembly in C#

What is the best way to check if a DLL file is a Win32 DLL or if it is a CLR assembly. At the moment I use this code try { this.currentWorkingDirectory = ...
7
votes
3answers
4k views

WebResource.axd blank or not found

I'm trying to export a control library in a .dll for other developers in the office to consume. The solution I original created looks like this: Solution 1: - Mri.Controls (Class Library) - ...
4
votes
1answer
145 views

Retrieving DLL information in .NET

My problem: Given a list of DLL paths, find their version number and all assemblies referenced. Some may point to the same DLL but with a different path or version. My Code: Dim otherDomain As ...
2
votes
2answers
177 views

How to Programmatically Check c++ DLLs and C# dlls for references to Debug DLLS to automate testing procedure

Have ran into this issue a few too many times and need this to be an automated approach: I have multiple DLLs that are constantly being built/changed that multiple projects use I have created a c# ...
2
votes
0answers
302 views

How to use JSON.NET correctly when deseralizing from embedded DLL?

I'm writing C# code in Visual Studio. I add the embedded DLL inside the project, I am dynamically loading the assemblies. We use JSON.NET to serialize and deserialize objects with type ...
1
vote
2answers
66 views

Load two DLLs with different versions

I am developing a project in which I have to create a new feature. Now I am facing a problem that there is a DLL reference in a project with old version and for developing the feature I need a new ...
1
vote
2answers
71 views

Linking assemblies with partial classes

I have a common project called common. Inside is a class called ExtensionMethods which is used by legacy applications. I want to break apart the class into multiple files, but keep the name the ...
1
vote
1answer
104 views

How to use Regasm.exe to Completely Unregister a AssemblyFile

I tried the following command to unregisters AssemblyFile: regasm "AssemblyFilePath" /unregister /silent However, it still leaves the such registry entries: Windows Registry Editor Version 5.00 ...
1
vote
0answers
75 views

NSevriceBus Assembly Version Error

I have an issue when trying to load the NServiceBus assembly from a client machine. The software runs correctly from my development box but once rolled out I get the following error: Could not load ...
0
votes
0answers
42 views

System.ServiceModel.Internals.dll: Where does it come from?

Which framework/SDK/update or whatever stuff installs this dll? We've been trying to identify the source of the dll, with Silverlight 4, RIA Services, Silverlight 5 SDK thought of as suspects but ...
0
votes
1answer
53 views

Deserialization of externally loaded assembly types

I load external libraries using Assembly assembly = Assembly.LoadFile(assemblyPath); foreach (Type assemblyType in assembly.GetTypes()) { if (assemblyType.IsSubclassOf(typeof(Chip.Chip))) { ...
0
votes
2answers
179 views

Call methods from Managed C++ dll object

I load my dll in C# with Assembly assembly = Assembly.LoadFrom(dllPath); // late binding Type classType = assembly.GetType("Namespace.Classname"); object readerInterface = ...
0
votes
1answer
336 views

Windows Phone 7 : build netmodule and dll

In my Windows Phone 7 project, I try to separate my source files in module. Here is what I am doing : I build a netmodule from sources with command line : ...