Re: how to add a configuration parameter with spaces on Jenkins

2020-11-10 Thread jesus fernandez
that worked! thanks! El viernes, 6 de noviembre de 2020 a las 15:55:26 UTC+1, victormar...@gmail.com escribió: > Did you try with escaped double quotes? Something like: > > >- bat "\"${msbuild}\" AoC/Source/project-GRDK.sln /t:Rebuild >/p:configuration=\"Release Steam D3D11\" " > > >

Re: how to add a configuration parameter with spaces on Jenkins

2020-11-06 Thread Victor Martinez
Did you try with escaped double quotes? Something like: - bat "\"${msbuild}\" AoC/Source/project-GRDK.sln /t:Rebuild /p:configuration=\"Release Steam D3D11\" " You can also use the multilne approach to avoid the escape of double quotes: - bat """ "${msbuild}" AoC/Source/project-GR

how to add a configuration parameter with spaces on Jenkins

2020-11-06 Thread Jesus Fernandez
I have a pipeline which builds a C++ project for that I am using MSBuild, untill now we were using the "Final" configuration parameter, but now I need to switch it to "Release Steam D3D11", when I try to do that I get an error on Jenkins when building the project I guess it is because of the sp

How to add a configuration parameter with spaces on Jenkins

2020-11-06 Thread jesus fernandez
I have a pipeline which builds a C++ project for that I am using MSBuild, untill now we were using the "Final" configuration parameter, but now I need to switch it to "Release Steam D3D11", when I try to do that I get an error on Jenkins when building the project I guess it is because of the sp