July, 2009
NOTE: Please make a backup of this file before you edit it. Visual Studio is very picky about the formatting and it is easy to screw things up!
This is one of those gems on the web that needs to be linked to so that we can all remember how to do this. The idea here is streamlining compact framework development by enabling your CF projects to re-target and run on your desktop. This is more a simulator instead of an emulator for application development. Daniel Moth describes how to set it up here. I’ll summarize as well:
%USERPROFILE%\Local Settings\Application Data\Microsoft\CoreCon\1.0\conman_ds_platform.xsl
file in a text editor.<PROPERTY ID="IsDesktopDevice" Name="IsDesktopDevice">true</PROPERTY>
Place it right after the first <PROPERTYCONTAINER>
tag.conman_ds_platform.xsl
and restart VS.Now when you deploy, you can select “My Computer” from the deploy dialog.
I can’t tell you how much time this saves in developing compact framework applications. Just remember that in the end you still have to test on a real device.