Hi guys,
There are plenty of discussing that shows how to load assemblies from BIN and from GAC... my question is more general and I would love to know how assembly loading work.
As for example
in the BIN folder we can have
A.dll
A.dll.config
A.dll.config file can look like:
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
to help us setting the correct assembly reference.
I was wondering how can I create a A.dll that needs B.dll but without specify any version so if would always take the B.dll that is in the BIN Folder.
My question is regarding an update of the SDK and all my code still points to the old SDK version, I wanted to have my assembly look for the top most of all versions of the resource, BIN or GAC and use that one...
How can I say that in Visual Studio? I can only Add Reference to a physical file (version) :-(