Tagged Questions
The signed-assembly tag has no wiki summary.
4
votes
3answers
961 views
c# - can you make a “weak” assembly reference to a strong named assembly
For various reasons i would rather not use strong named (signed) assemblies in my project. however, one of the projects is referenced by a sharepoint web part which means it must be signed.
is it ...
3
votes
3answers
114 views
Is it possible for a website project to reference a signed assembly in visual studio?
I'm aware of the following two different types of web projects in Visual Studio 2008:
Website project
Web application project
A web application project can reference a signed assembly as long as ...
1
vote
1answer
459 views
Signed assembly dependency that references a COM DLL must have the dependency's generated interop assembly referenced
Sorry about the terrible title.
I have a signed assembly 'Signed.dll' that is a dependency of another assembly, say Executable.exe.
Signed.dll references a COM DLL and publically exposes one of this ...
0
votes
1answer
238 views
Is there a way to have assemblyBinding->bindingRedirect allow several target versions?
I am in signed .NET assembly hell.
I have an application compiled against signed Assembly A, version 1.1 (SA 1.1.1) . On some systems I already have SA 1.1.2
Is it possible to express this in the ...
0
votes
7answers
1k views
Why are signed assemblies slow to load?
I encountered a strange problem this week that I can't explain: I switched my application to use the signed version of some third party assemblies (Xceed Grid and some of their other components) and ...