MSBuild conditionals depending on task parameters
- by jalf
In MSBuild it's straightforward to define, say, a PropertyGroup which depends on the value of a property Foo:
<PropertyGroup Conditional="'$(Foo)'=='Bar'" />
Is it also possible for the conditional to depend on a task parameter?
For example, I'd like to use the value of the Link task's SubSystemparameter roughly like this:
…