PDA

View Full Version : VS.NET configurations


SpartanHokie
10-19-2004, 07:55 AM
We currently have three configurations that are used to build our application suite - a debug, a release and then another based off of the release. I would really like to just build debug and release off of our automated build, but I can't seem to get just those two to build without the third to build with it. Is it possible to just get debug and release to build and no others?

kinook
10-19-2004, 08:44 AM
Since v5.4, the Make VS.NET action supports specifying a regular expression to indicate which solution configuration(s) to build. So entering a configuration of

Release|Debug

should build only the Release and Debug solution configurations, if that's what they're named.

SpartanHokie
10-19-2004, 08:46 AM
duh...

Thanks...