I'm fooling around with Azure.
I found this guide on Continuous Delivery for Cloud Applications in Windows Azure and thought if there's a way to use either Web Deploy or the Azure SDK to do the actual deployment, rather than Powershell?
I want to deploy the same package as a Cloud Service. The Cloud Service may not exist, so it need to create it. If it exists, it should just update the package.
Update
I want to do this from a Windows Service that I already have (currently deploying to a local IIS). It's important that it can be done from some kind of programming interface, but if Powershell is only option, so be it.
Can this be done?