- When we run into errors we should emit the errors into the node stream signaling that we should end the stream.
This fixes the case where you have the following code, with a failure in restore. In the past errors in restore would still call build. #27
return gulp.src("**/*.csproj")
.pipe(restore())
.pipe(build());