tags:

views:

58

answers:

1

Hello,

I'm trying to refactor my MSBuild scripts and have imported a shared build definition by

<Import Project="MSBuild.Passolo.targets" />

But when I call the custom target from the imported project

  <Target Name="AfterCompile">
...
    <CallTarget Targets="MsBuildPassolo" />
...

it isn't executed.

Thanks for your answers,

Regards, Marco

A: 

Problem solved - have used a wrong Condition, AfterCompile never has been executed.

Marco Wlotzka