[Build VS.Net Solution] Solution - Apply to Project

On the 'Build VS.Net Solution' action,

I hope to select projects (Solution tab -> Apply to Project) by variables, not just by selecting checkbox.
(to put in the Action Lists)

Hi DongHo,

You can use the ‘BeforeAction’ script event to select which projects to build using variables, the script will be:

Action.SelectedProjects.Clear 
Action.SelectedProjects.Add(YOUR_VARIABLE)


This will clear the currently selected projects and select the project as defined in the %YOUR_VARIABLE% variable.

Regards,
Paul.