I have a solution that has an ASP.NET MVC web application with a control source in Visual Studio TFS on the web. The site is hosted on Azure, which deploys the site each time it is embedded in TFS on the Internet. Everything works well.
I then added the Web Job project to the solution using Add> New Azure WebJob project, and I installed it using this azure blog post . Since then, I noticed that any changes made to the web application are no longer reflected on the deployed site. I do not see errors in the build log in TFS on the Internet.
To work around this problem, I must: 1) remove the web job project from the solution, and 2) comment on everything in the webjobs-list.json file in the Project Properties web application before deployment. This substantially returns the solution to the state before adding the web job.
I was wondering what I can do to prevent my problem from occurring. I think that perhaps I am missing some configuration step, but I do not know where to look.
source
share