¡@

Home 

c# Programming Glossary: assembly1

How-To Prevent Module Duplicates with MEF?

http://stackoverflow.com/questions/1708018/how-to-prevent-module-duplicates-with-mef

presence of 2 copies of the same Assembly maybe by mistake Assembly1.dll Assembly2.dll copy of Assembly1 ImportMany public IList.. maybe by mistake Assembly1.dll Assembly2.dll copy of Assembly1 ImportMany public IList IModule Modules get private set public..

Is it possible to mark an assembly as deprecated?

http://stackoverflow.com/questions/4475014/is-it-possible-to-mark-an-assembly-as-deprecated

look like before and after the merge Before the merge Assembly1 namespace A.B.C class C1 ... Assembly2 namespace A.B.D class.. ... Assembly2 namespace A.B.D class D1 ... After the merge Assembly1 empty Assembly2 namespace A.B.C class C1 ... namespace A.B.D.. A.B.D class D1 ... Before the merge users referenced both Assembly1 and Assembly2. After the merge they only need to reference Assembly2..