Dan
Dan

Reputation: 3703

Publish web app without webjobs

In visual studio 2015, I am deploying a site with three webjobs by right-clicking the web app and publishing (stop judging me! I know you do terrible things too!). I have multiple publish profiles (.pubxml) set up; Is there a way in one of the profiles to publish only the website/app and skip the webjobs?

Upvotes: 3

Views: 359

Answers (1)

Jerry Liu
Jerry Liu

Reputation: 17790

Of course you can, find <ExcludeApp_Data>False</ExcludeApp_Data> and change value to True.

Note that if you have already published webjobs to website, this settings won't remove them.

Upvotes: 1

Related Questions