One might want to setup your workflow between TFS Online and Windows Azure Web Sites such that you deploy to TFS online and have TFS online deploy to Windows Azure Web Sites. You can do this with a C# project, but doing with a Node.js project results in an error while building:
C:\a\src\Imgazur.njsproj (49): The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Node.js Tools\Microsoft.NodejsTools.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
Of course, our project doesn't have to be built for deployment, we really just need to be pushed to WAWS.
Comments: I was able to get it to work by following the instructions in [this BUILD talk.](http://channel9.msdn.com/Events/Build/2014/3-584) at the 28 minute mark. I had to change the Build Definition to use the Node.js project file (instead of the solution) and added "/t:Package" to MSBuild Arguments under Advanced.
C:\a\src\Imgazur.njsproj (49): The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Node.js Tools\Microsoft.NodejsTools.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
Of course, our project doesn't have to be built for deployment, we really just need to be pushed to WAWS.
Comments: I was able to get it to work by following the instructions in [this BUILD talk.](http://channel9.msdn.com/Events/Build/2014/3-584) at the 28 minute mark. I had to change the Build Definition to use the Node.js project file (instead of the solution) and added "/t:Package" to MSBuild Arguments under Advanced.