Hi,
I have written a custom MSBuild task, call it TaskA, that parses a file and does some processing on it. I now want to write another MSBUild task, call it TaskB, that uses TaskA within it. I know that I could use TaskA like a normal class and just call its execute method from TaskB. But do you think that this is plausible? Will the log messages from TaskA still be logged when TaskB is being executed?