Created
July 12, 2015 17:43
-
-
Save devfred/d0cb937e2e7ca4bf7268 to your computer and use it in GitHub Desktop.
Revisions
-
devfred created this gist
Jul 12, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ var exec = require('child_process').exec; var child; child = exec('msbuild', function (error, stdout, stderr) { console.log('stdout: ' + stdout); console.log('stderr: ' + stderr); if (error !== null) { console.log('exec error: ' + error); } });