Developing .NET Compact Framework apps in Post-2008 Visual Studio?

I’m positive this question is a duplicate, but for the life of me I can’t find the original so I’ll re-answer here.

Microsoft’s support for Compact Framework development is not completely obvious or well documented. It’s a mixed matrix of the target version of Windows CE, the version of the Compact Framework and the version (and SKU level) of Visual Studio.

Generally speaking it comes out like this, based on your target OS:

WEC 2013

WEC 2013 supports only Compact Framework 3.9. Assemblies targeting previous CF versions should be recompiled (though I suspect they would still run).

Compact Framework 3.9 is supported starting with Visual Studio 2012, so you must use VS2012 or later for these projects.

Unlike previous versions of the CF, CF 3.9 application development isn’t provided “out of the box” in these versions of Visual Studio. You must install an “Application Builder” SDK from the device vendor to do any CF development.

Windows CE 7.0

Windows CE 7.0 supports CF 3.5 or CF 2.0 applications. Generally these devices only shipped with CF 3.5, if it was included, because 2.0 wasn’t available as a catalog item in Platform Builder.

You can develop CF applications for CE 7 in Visual Studio 2008 Pro or Visual Studio 2005 Standard (CF 2.0) only. There is no option to build using a newer version of Visual Studio for these targets, period.

Where does one get Studio 2008, you might ask? Either through an MSDN subscription, or (and many don’t know) by purchasing Platform Builder 7.

Windows CE 6.0

Same story as CE 7.0 above. CF 2.0 or 3.5, using Studio 2008 Pro or Studio 2005 Standard.

Windows CE 5.0 and Windows Mobile 5.0-6.x

Same story as CE 7.0 with an addition. These platforms also support CF 1.0. For CF 1.0, using Visual Studio 2005 Standard or Visual Studio 2003 Professional.

Windows CE 4.2

My memory gets hazy here, since it’s been a while, but IIRC you can use CF 1.0, 2.0 or 3.5. This would require Studio 2005 Standard (CF 2.0/3.5) or Studio 2003 Pro (CF 1.0)

Windows CE 4.1

Supports CF 1.0, using Studio 2003 Pro or eVC 4.0

Windows CE 4.0

Though this was called “Windows CE .NET”, it actually had nothing to do with .NET outside of marketing. It will not run CF apps of any sort. eVB or eVC were the choices for application development

Windows CE 3.0 and Pocket PC (original and 2003 variants)

eVB or eVC were the development platforms.

Windows CE 2.11 and 2.12, HPC Pro

eVB or eVC

Windows CE 2.0, PsPC

(Yes, my memory goes back this far)
eVB, eVC or the Visual Basic 6.0 Toolkit for Windows CE, depending on when you came into it

Leave a Comment