System.XML or dependency not found resulting in a TypeLoadException
I am developing a device application that accepts a string of XML from a sever side program and tries to parse the XML. Everything was working fine until I Imported System.xml. Code compiles and deploys fine but as soon as I attempt to create an instance of XMLTextReader is throws a type load exception and tells me that System.XML or one of its dependencys is not found. I am using VS2005 Beta and all the references are using .net framework 2.0, Also When I import system.XML it starts deploying other dlls to the device (System.Security, system.drawing etc) which it wasnt doing before, can I suppress this because it is slowing deployment\debugging time.

