I'm executing a task in msbuild:
<MyTask ContinueOnError="true" OtherParam="Cheese"/>
<PropertyGroup>
<MyTaskResult>????how do I set this????</MyTaskResult>
<PropertyGroup>
I want to get the result of MyTask into a property (it's Execute method returns a bool) so I can test it and conditionally do stuff. Is this possible?
Thanks.