We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using GetMessageText in SarifExtensionMethods, I am getting "System.FormatException: Input string was not in a correct format". It seems that this is being thrown by string.Format in GetFormattedMessage.
The value for formatString should escape any curly braces that are not in the format {int} to avoid this error.
formatString
{int}
See Remarks for string.Format
The text was updated successfully, but these errors were encountered:
According to [SARIF-v2.1.0-Errata01] §3.11.5 Messages with placeholders, the SARIF producer shall double the curly braces.
Sorry, something went wrong.
No branches or pull requests
When using GetMessageText in SarifExtensionMethods, I am getting "System.FormatException: Input string was not in a correct format". It seems that this is being thrown by string.Format in GetFormattedMessage.
The value for
formatString
should escape any curly braces that are not in the format{int}
to avoid this error.See Remarks for string.Format
The text was updated successfully, but these errors were encountered: