Reputation: 10304
I have configured a new msbuild path and name in the jenkins configure tool. The configuration pointing to v15
I receive thew following error:
C:\jenkins_slave\cortana\workspace\xxx\testing>exit 0 FATAL: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin doesn't exist Build step 'Build a Visual Studio project or solution using MSBuild' marked build as failure
How can I solve it?
Upvotes: 1
Views: 4557
Reputation: 11
In second screenshot you need to put slash at the end of the path: C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\
However, to use Jenkins MSBuild plugin for VS2017 there are other things to consider. Launching MSBuild executable in my case required bunch of environment variables to be configured which otherwise are set in "Development Command Prompt".
I am contemplating using "dotnet build", "dotnet test" etc. in command line instead.
Upvotes: 0