I use hudson build to build my application. I have a web.debug.config, a web.release.config and a web.beta.config. My question is this. Is there a way to make hudson build job to do a separate build for each of these every time I do a build?
I use hudson build to build my application. I have a web.debug.config, a web.release.config
Share
There is a serious lack of documentation on the Matrix projects and after trying all sorts I gave up on that and have a much simpler solution to what I was trying to achieve.
To achieve a build of each config I just added extra build steps with different command line parameters like this.
Click add a build step -> Build a VS project or solution with MSBUILD
In the command line arguments field add the following:
/property:Configuration=Debug
I then simply added another build step that does another build except with:
/property:Configuration=Release
And another with /property:Configuration=Beta
This runs through each build sequentially using the different configs on each build.