hoffi/gulp-msbuild

publish

Closed this issue · 2 comments

Is there a way to publish using publish profile?

hoffi commented

I haven't tested this, as i don't use it, but according to this article you need to specify two properties: /p:DeployOnBuild=true /p:PublishProfile=Profile

You can specify any properties in gulp-msbuild. For example:

msbuild({ properties: { DeployOnBuild: true, PublishProfile: "Profile" } })

Does this help you?

@bsjaffer Did you ever get Publish profile to work?