Reputation: 107
I've seen is possible to push Azure Service Fabric applications using PowerShell, but for this the package of the application is a pre-requisite, and in all tutorials I can only create it through visual studio. Is there any way to create the package from command-line? I plan to create my package on the build server.
Upvotes: 2
Views: 249
Reputation: 3995
The basic answer for command line is this:
msbuild Application.sfproj /t:Package /p:Configuration=[Debug|Release]
The article on setting up continuous integration that Raphael posted goes into more detail about how to set this up in a VSTS build definition.
Upvotes: 3
Reputation: 107
Well, we have a good guide here: https://azure.microsoft.com/en-us/documentation/articles/service-fabric-set-up-continuous-integration/#create-your-build-definition
Upvotes: 0