views:

63

answers:

2

Is it possible? And if possible, is it possible to compile created in VS azure cloud project, having only .net35 and azure SDKs installed, also without VS?

+4  A: 

You could use MSBuild which comes with the .NET framework

ChrisF
Got it - compilation works. Sorry, i've asked a bit wrong question for azure cloud project - is it possible to _Publish_ azure cloud project? (In VS i click on cloudService project, select "Publish", and it generates ".cspkg" file which is to be deployed to azure hosting.
Googled that yes. Thank you.
A: 

The Windows Azure SDK comes with a utility called cspack.exe, which will create a .cspkg file for you.

Jason Haley