views:

71

answers:

1

Hi,

I have a custom tool which is set up as a pre-build event, it does some multi-language processing on the source code before it builds.

I was wondering if it was possible for that tool to generate warnings which can be seen in visual studio's list of build warnings, either by outputting a specific string to the console (or by some other method).

Thanks

+3  A: 

Please look at MSBuild / Visual Studio aware error messages and message formats.

Soul_Master