Selecting a particular framework

  • Thread starter Thread starter LearningCF
  • Start date Start date
L

LearningCF

Hi,

I just started developing applications on the .Net Compact Framework.
I've got .NET 1.1 and 2.0 installed on my machine along with VS 2005.
However, each time I deploy, it deploys it as a .NET 2.0 application.
How can I programmatically check and change the version of the framework
to use on the device. Basically I want to use v1.1. Any help would be
appreciated.

Thanks,
Steve
 
you can't change the version programmatically, it does not work like
that

when you created the VS project you selected a CF 2 project type and it
is therefore deploying CF 2 if it's not already installed

you can't downgrade a project from CF 2 to CF 1, the easiest thing to
do is recreate the project as a CF 1 project and import the source code
you can from the first CF 2 version, but form classes from CF 2 will
not work in CF 1 so you will need to rebuild the forms.

lastly, there is no such thing as CF 1.1, it's just CF 1.0 (with
service packs 1, 2 and 3)
 
Great! That was simple. Didn't notice a Device Application (1.0) there
before but that works. Thanks,

Steve
 
Back
Top