Assembly linker will do the following
We like to combine Karthik.dll with Anbu.dll
and put them into a Private Assembly we call GreetAssembly.dll, this is Step1 in our Sample
Application.
DotNet> al /t:library
/out:bin\GreetAssembly.dll bin\Karthik.dll bin\Anbu.dll
For this purpose we use the Assembly Linker.
As /t (target) we generate here a library referencing the two other DLLs. This
is also called a Multi-Module Assembly. Again, we store all the binaries in a
bin folder.