mixing .NET and .NET Compact DLL's on a PocketPC

J

Jo Vermeulen

Hello,

I'm working on an application which depends on XPath queries. I would
like to port it to the .NET Compact framework though. Is it possible to
replace the usual .NET Compact DLL by a full .NET framework DLL
(System.Xml in this case)?

I would also like to know the procedure for doing this. I noticed that
Visual Studio .NET does not allow me to deploy and "overwrite" the
Compact System.Xml dll when I add a reference to the full System.Xml dll
after deleting the reference to the Compact .NET version.

Any help would be greatly appreciated.

Kind regards,
 
C

Chris Tacke, eMVP

No. Full framework assemblies are not retargetable to CE devices for
several reasons. One major one is that they likely use APIs that don't even
exist on the device.
 
A

Andrew Enfield \(MS\)

Nope. Not possible. You'll need to write the code so it uses the XML support
in the .NET CF.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top