6.0.0 - #743
Merged
Merged
Conversation
Fix for `\AsmResolver\src\AsmResolver.PE\DotNet\DotNetEntryPoint.cs`(21,88): error CS9336: The pattern is redundant. AsmResolver.PE net9.0 failed with 1 error(s) (3.0s) The fix adds parentheses around the or pattern: `is not (TableIndex.Method or TableIndex.File)`. What was wrong: The original `is not TableIndex.Method or TableIndex.File` was parsed by C# as `(is not TableIndex.Method) or (is TableIndex.File)` due to operator precedence. The `or TableIndex.File` arm was always redundant (if table is `File`, the first part `is not Method` is already true), hence CS9336. The fix: `is not (TableIndex.Method or TableIndex.File)` correctly groups the pattern to mean "table is neither Method nor File", which matches the intended validation logic.
Fix DotNetEntryPoint.cs error CS9336: The pattern is redundant.
…ssing "frameworks" property
…-frameworks BUGFIX: Address target framework detection regressions
…Descriptor) when IgnoreStrongNames flag is set
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
…lopment/actions/github-script-9 Bump actions/github-script from 8 to 9
Docs: add a note about native method restrictions
Add IsAssignableFrom
…-errors Fix errors in the documentation of TypeSignature
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.