How to invoke MSBuild task from FinalBuilder?

The only way I see now is to create xml file for MSBuild with needed taks invocations and then run MSBuild directly by calling"Execute Program" action. Is there any standard way of doing this?

MSBuild Tasks are designed to be invoked by… MSBuild. They depend on the infrastructure of MSBuild, you can’t just instantiate the task and run it.

Oh and there is an MSBuild action in FinalBuilder for invoking MSBuild, you don’t need to use the Execute Program action.

You can also invoke MSBuild (instead of devenv) on a VS.NET solution / project by clicking the “Use MSBuild” checkbox on that step.

I got it. Thanks for your help!