WarningCount and HintCount properties working?

Hello,

We're using current official FB release (7.0.0.1065), and noticed that the Build Delphi Project action has WarningCount and HintCount properties. We attempted to get these values from AfterAction -script, but they appear to be always 0 even though the project built has warnings or hints.

We could not find any documentation concerning these, so are they operational and how can these values be catched to FinalBuilder variables?

Hi

How are you accessing these values? Could you try using the following script, I have tested it here and the values are reporting the correct values:

Javascript:
[code]Action.SendLogMessage("Hints: " + Action.HintCount, stInformation);Action.SendLogMessage("Warnings: " + Action.WarningCount, stInformation);if (Action.WarningCount > 0){ Action.SendLogMessage("Failing Action due to warnings", stError); ActionResult = false; Continue = false;} [/code]

Regards,
Steve