Can someone write a (or link) walkthrough that explains how to create a custom MSBuild task and run it during build? I am looking for a custom task that inherits from Microsoft.Build.Utilities.Task and does just that:
public override bool Execute() { Log.LogMessage("Hello world!"); return true; }
(I have been working on this for several hours and keep getting the βTask [independently]]. Check out the following message. I think I should miss some important step somewhere. If there is a clear guide, I can follow, perhaps I will find out where I canβt.)
msbuild msbuild-task
Ryan lundy
source share