nodejs-msbuild
nodejs-msbuild copied to clipboard
node.js msbuild helpers
Bumps [async](https://github.com/caolan/async) from 2.6.1 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) v2.6.3 Updated lodash to squelch a security warning (#1675) v2.6.2 Updated lodash...
Add ability to tune out console.log information (use a tool that allows you to limit your logs to info, debug and give the user ability to turn down the verbosity)
The path resolves to the wrong installation and version when version is set to "current" and you're using 64 bit version of VS22 ``` events.js:1740 throw er; // Unhandled 'error'...
Hi Used version: **1.1.4** The logic for getting the path to MSBuild.exe is failing for the following reason: * When using `msbuild.config('version', '17.0');` * VS 2022 is installed under 'Program...
I'm using the current version of the msbuild package in my project. Running npm task via Visual Studio 2019 (build tools version 16.0). I have the following defined in my...
`gulp.task("package-web", function (cb) { console.log("[Create Web Deploy package]"); gulp.src(paths.expenseWebSitePath + "/Deployment/*.xml") .pipe(gulp.dest(paths.expenseWebDeployPath)); var msbuild = new _msbuild(cb); msbuild.sourcePath = paths.expenseWebSiteProject; msbuild.toolsVersion = config.vsToolsVersion; msbuild.configuration = config.environment.buildConfiguration; //targets msbuild.overrideParams.push('/target:Clean;Build;Package'); msbuild.overrideParams.push('/p:VisualStudioVersion=' +...