Compile for the CF

  • Thread starter Thread starter Alexander Muylaert
  • Start date Start date
A

Alexander Muylaert

Hi

I have an working an existing assembly.
How can I compile this for the compact framework? When I run this, I have
some errors on the dll. Things that are not provided in the CF. Is their a
way I can have the compiler check for this?

kind regards

Alexander
 
You have to build a specific SDE project for the Compact Framework. CF
assemblies that run on the PDA may run on the desktop but not the other way
around. The CF is a subset of the full desktop Framework API.

--
Sam Gentile
Microsoft MVP - .NET/C#
INETA Speaker
CLR Blog: http://samgentile.com/blog
..NET Portal and Slides http://samgentile.com/
 
I'm aware that it is a subset. I even took that in account when designing
my classes. But I seem to have missed one.

Are you actually saying I need to make a new assembly and insert everything
in there?

Jezus, it took MS more manhour to develop the framework than it took nature
to design live and this is the best they could come up with?

Anyway

Back to the drawing table then... :(

kind regards and thanks

Alexander
 
Alexander said:
I'm aware that it is a subset. I even took that in account when designing
my classes. But I seem to have missed one.

Are you actually saying I need to make a new assembly and insert everything
in there?

Jezus, it took MS more manhour to develop the framework than it took nature
to design live and this is the best they could come up with?

You can also compile on teh command line, using the CF compiler and your .cs
files. It's a lot simpler :)

FB
 
Back
Top