Following the example from @MatteoRagni, I was able to get msbuild
to run with this configuration:
os: windows
env:
- MSBUILD_PATH="c:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
script:
- export PATH=$MSBUILD_PATH:$PATH
- ./build.bat
Thanks, this is working great now!