PDA

View Full Version : VS Solution configurations / platforms


autodesk
08-01-2006, 12:54 PM
I have a Microsoft Visual Studio 2005 solution with multiple configurations and multiple platforms per configuration. How can I use regualr expressions in the "Make VS.NET" action -> project/solution tab -> configuration(s) option to compile a certain set of those configurations using only one "Make VS.NET" action?

Here is a list of the configurations that are in the solution:
Debug-Office2000
Debug-Office2003
Debug-OfficeXP
Release-Office2000
Release-Office2003
Release-OfficeXP

Under each configuration, I have the following platforms:
Any CPU
Mixed Platforms
Win32

The Configurations|Platforms that I am interested in compiling:
Debug-Office2000|Mixed Platforms
Debug-Office2003|Mixed Platforms
Debug-OfficeXP|Mixed Platforms

Thank you!

kinook
08-01-2006, 02:32 PM
Debug-.+\|Mixed Platforms

autodesk
08-01-2006, 03:15 PM
That works. Thank you!