-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
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
BUGFIX: Fix incorrect analysis for non-Microsoft compiler on BA2006.BuildWithSecureTools #545
BUGFIX: Fix incorrect analysis for non-Microsoft compiler on BA2006.BuildWithSecureTools #545
Conversation
… check if fix works 2. now we can review the actual change without noise
src/ReleaseHistory.md
Outdated
@@ -2,6 +2,7 @@ | |||
|
|||
## Unreleased | |||
|
|||
* BUGFIX: Fix Error BA2006: '...' was compiled with one or more modules which were not built using minimum required tool versions [545](https://github.com/microsoft/binskim/pull/545) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agree, this is both short and clear.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note:
this is the same issue with #533,
The only difference is after we merged in SDK changes, this is now pointing to SDK main instead of private branch.
And then re-run the baseline. no new files changed.
And changed the history.md file with this new PR number "545"
Description:
reported issue with
error BA2006: '...' was compiled with one or more modules which were not built using minimum required tool versions
this error happens in new version 1.9.0
tested it passes in old version 1.7.2
Fix:
related to changeset #344
location: file BA2006.BuildWithSecureTools.cs line 104
we should add a skip if the compiler is not the ones we currently support those we can check min version.
After we widen the support we should remove this skip.