convert a "normal" c sharp project in a compact framework project

C

Carsten Marx

hello,
how can i convert a normal c sharp project in a compact framework
project without including all the files manually in the new project.

i'm working with visual studio .net 2003 and pocket pc emulator 2003.
my application has no windows.forms, so that there will be not much work
to make the nessecary changes in the code.

i'm searching for the easiest way....

thanks


regards
Carsten
 
P

Peter Foot [MVP]

There is no conversion process, creating a new project and then inserting
the existing code files will work. If you create the new project in the same
folder, then you will be working with the same .cs files, if you create it
in another folder copies will be made of these files.

Although there are major changes in the forms models on compact and desktop
frameworks, there are also many other areas where you will run into
functionality that you take for granted on the desktop but is not available
in the Compact Framework. OpenNETCF's Smart Device Framework
(www.opennetcf.org/sdf) aims to fill many of these gaps. For others you may
need to rewrite some of your code.

Peter
 

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