is there any easy way to get the fully qualified name for assembbly? e.g.
This article (How to: Determine an Assembly's Fully Qualified Name ) will probably help you
Code from MSDN
//s if the Fully Qualified assembly name Type t = typeof(System.Data.DataSet); string s = t.Assembly.FullName.ToString();