I\'ve created a build definition using TF Build. It is the nightly build for our project. It should run the defined Unit Tests and it should package the Azure Cloud Service proj
Okee, it was much simpler then I though.
The /target
-arguments of MSBuild can take multiple targets that are built in turn. I change my build definition to have /target:Build;Publish
as msbuild params. This fixed the issue.
I got an error (no entry point specified for cloud service) doing /t:Build;Publish
with my service. So I did 2 separate actions, one with Build
and one with Publish
and that worked.