We have a NodeJs project that we want to build on our TFS Server. We are using the Default Git template for our Build Definition. However we are getting the following error:
```
"E:\NodeJs\Sample\Sample.njsproj" (default target) (1) ->
(_CopyWebApplicationLegacy target) ->
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\WebApplications\Microsoft.WebApplication.targets(136,5): error MSB3030: Could not copy the file "obj\Debug\Sample.exe" because it was not found. [E:\NodeJs\Sample\Sample.njsproj]
```
We think it is because it is using the standard Web targets instead of the nodejs one.
Is there any documentation on how to integrate building nodejs projects with MsBuild on the build server?
```
"E:\NodeJs\Sample\Sample.njsproj" (default target) (1) ->
(_CopyWebApplicationLegacy target) ->
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\WebApplications\Microsoft.WebApplication.targets(136,5): error MSB3030: Could not copy the file "obj\Debug\Sample.exe" because it was not found. [E:\NodeJs\Sample\Sample.njsproj]
```
We think it is because it is using the standard Web targets instead of the nodejs one.
Is there any documentation on how to integrate building nodejs projects with MsBuild on the build server?