Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to rebuild .net CF application and deploy in windows mobile emulator using command-line

Is there a ways to rebuild a c# .net CF application and deploy it in windows mobile emulator from the command-line?

This is required to create a bat file for automation.

I have taken a look at http://msdn.microsoft.com/en-us/library/aa188169(VS.90).aspx which mentions how to use the emulator from command line, but doesn't mention how to deploy an application in it.

Thanks,

Vicky

like image 807
Vicky Avatar asked Aug 11 '10 09:08

Vicky


1 Answers

I just tried calling devenv with the /deploy switch to tell it to deploy to the target and it worked just fine:

devenv /deploy Release "MySolutionName.sln"

like image 62
ctacke Avatar answered Oct 25 '22 04:10

ctacke