0
votes
1answer
15 views
Is there any way to get a full list of .Net assemblies installed on the current machine by Framework Version?
I'm after something very similar to the Visual Studios 'Add Reference' form. Is there any way, given a particular framework version (2.0, 3.0 or 3.5) that I can return all the asse …
0
votes
1answer
17 views
Assemblies mysteriously loaded into new AppDomains
I'm testing some code that does work whenever assemblies are loaded into an appdomain. For unit testing (in VS2k8's built-in test host) I spin up a new, uniquely-named appdomain pr …
2
votes
3answers
34 views
Automatically advance minor version number every build (VS 2008)
I use the assembly information version number - and advance it manually through the VS 2008.
Is there a way to advance the minor version number automatically each time I Build the …
1
vote
2answers
53 views
[C#] Assembly instance with no types in it
How do I get Assembly reference for a .dll with no types in it?
var assembly = typeof (SomeType).Assembly; --> but without having to spacify any type?
Something like Assembly.Ge …
0
votes
0answers
12 views
Making sense of fusion logs
I have a windows Forms app, that fails on start up. An answer to a previous question here on Stack Overflow suggested to use fuslogvw to figure out, exactly what is wrong.
I did …
0
votes
2answers
49 views
Maven assembly Plugin with Maven Jar Plugin
Hi,
I'm trying to use the maven assembly plugin for the first time. Essentially, I want to combine the output of the maven assembly plugin with that of the maven jar plugin into t …
0
votes
4answers
33 views
Access denied when loading dependancy .dll .NET
Okay,
We have a .NET WinForms application that has several .NET dll's it depends on, running on an XP machine, that is connected to a network in a large domain.
A little story, t …
1
vote
1answer
33 views
How can I get all the inherited classes of a base class?
class Foo { }
class Foo1 : Foo { }
class Foo2 : Foo { }
How would I be able to get all the classes that use Foo as a base class? The inherited classes aren't necess …
1
vote
4answers
101 views
How to load an assembly without using Assembly.Load?
Is it possible to do this by streaming the assembly into memory? If so, how does one do this?
Reason:
I don't want to lock the dll that's loaded. I want to have the ability to dy …
1
vote
1answer
115 views
.NET mixed multi-file assembly
I need to create a .NET assembly composed of 2 modules: 1 internal (in the DLL) with native code and 1 external (in a .netmodule file).
This would be easy to do, except for the na …
2
votes
3answers
68 views
We have two version of the same assembly in GAC? I want my client to make choice of which assembly to choose?
We have two version of the same assembly in GAC? I want my client
to make choice of which assembly to choose?
0
votes
3answers
27 views
How can I prevent the referencing of a certain assembly when running in Mono.
I know how to branch the code based on Mono (Type.GetType("Mono.Runtime") != null) but even when the Mono code path is taken, Mono is attempting to load assemblies that would be re …
1
vote
3answers
59 views
Assembly references for dymanically loaded DLLs
Hi,
I have 4 assemblies:
Tester.exe
ToyInterface.dll
ToyFactory.dll --> reference (ToyInterface.dll)
Toy.dll --> reference (ToyInterface.dll)
Tester.exe
internal ICollection& …
36
votes
9answers
753 views
How did Microsoft create assemblies that have circular references?
In the .NET BCL there are circular references between:
System.dll and System.Xml.dll
System.dll and System.Configuration.dll
System.Xml.dll and System.Configuration.dll
Here's …
1
vote
5answers
154 views
How do I prevent other programmers from wrapping my assembly?
Can someone tell me what the best approach to protecting my component DLLs in .Net?
I've written a few DLL components which will be publicly available. They will be licensed accor …
