c# - How to change error description for custom MSBuild ToolTasks? -
I have created custom tooltasks for MsBuild using C #. This function is used to execute a nodeJs
script as part of a Visual Studio Project Build. This task correctly renders any error output from the tool in the Visual Studio error list, but it is unclear whether the error has originated from custom work.
I am worried that the prospective user, can not have a clue that there is a real error in the custom work
Does any property or meta information (or output) Is there a way to set up so that the task can be named as part of the error statement?
See the examples given below:
If you have typed a custom task (C #?), It should be easy to add additional text to the error message.
Comments
Post a Comment