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
Given a Result object result with result.RuleId == "TEST0001/1", and a ReportingDescriptor object rule with rule.Id == "TEST0001", the call
Result
result
result.RuleId == "TEST0001/1"
ReportingDescriptor
rule
rule.Id == "TEST0001"
SarifLogger logger = ... ; ... logger.Log(rule, result);
fails with the message:
Error: System.ArgumentException: The rule id 'TEST0001/1' specified by the result does not match the actual id of the rule 'TEST0001'
The text was updated successfully, but these errors were encountered:
Fix #1668: SarifLogger doesn't handle sub-rules.
64ab7e2
be49951
No branches or pull requests
Given a
Result
objectresult
withresult.RuleId == "TEST0001/1"
, and aReportingDescriptor
objectrule
withrule.Id == "TEST0001"
, the callfails with the message:
The text was updated successfully, but these errors were encountered: