PPC 2000 with compact framework 2

A

Arijull

Hello.

I want to know if there is any way to make .net CF version 2 work with
a PPC 2000 (with windows mobile 2000).

I mean that I have my app wich i made with VS2005 (CF 2) and I need to
run it in a PPC 2000.

Thanks!

Ariadna.-
 
P

Peter Foot [MVP]

It's not possible, .NETCF v2.0 requires Windows Mobile 2003 or Windows CE
4.2 or later. You can target older devices with .NETCF v1.0

Peter
 
A

Arijull

Thanks Peter for your answer.

Is there any way to convert my app that is working with CF v2.0 to CF
v1.0 or CF v1.1?

Thanks!
 
G

Guest

There is no CF 1.0, only 1.0. The only "conversion" is to recompile, fixing
the errors that prevent it from compiling against the 1.0 BCL.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
A

Arijull

Ok. There is something that I didn't follow you.

Dou you mean that I should open my solution with VS 2005 and recompile
my solution with CF 1.0, or that I shoul open my CF v2.0 solution with
VS 2003 and recompile it.

If I should use VS 2005, How do I change the version of the CF?

Thanks again for your time!
 
G

Guest

Dou you mean that I should open my solution with VS 2005 and recompile
my solution with CF 1.0, or that I shoul open my CF v2.0 solution with
VS 2003 and recompile it.

Either one should work.
If I should use VS 2005, How do I change the version of the CF?

Unfortuantely MS didn't make that simple. 1.0->2.0 was a right click and
select a menu item. 2.0->1.0 requires opening the project file with a text
editor like Notepad and changing the target version.

You'll find a line like this:
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>

Change it to:
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 

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