I have a class library that makes use of XmlSerializer. I was getting an error in another assembly that uses this class library (see further information here). So, I am trying to use sgen to create pre-built XmlSerializer. Do I have to change anything in my class library (e.g., reference the pre-built class names instead of System.Xml.Serialization.XmlSerializer), or does the Framework take care of everything, assuming my pre-built serializers DLL is deployed and registered with my class library?
I found plenty of information on msdn about generating the pre-built assemblies, but I couldn't really find much information on what (if anything) needs to be done to use the pre-built assemblies.
I found plenty of information on msdn about generating the pre-built assemblies, but I couldn't really find much information on what (if anything) needs to be done to use the pre-built assemblies.