Skip to content

6.0.0 - #743

Merged
Washi1337 merged 27 commits into
masterfrom
development
May 16, 2026
Merged

6.0.0#743
Washi1337 merged 27 commits into
masterfrom
development

Conversation

@Washi1337

Copy link
Copy Markdown
Owner

No description provided.

AntonDevil and others added 27 commits March 11, 2026 00:16
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.
…-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
…-errors

Fix errors in the documentation of TypeSignature
@Washi1337 Washi1337 added this to the 6.0.0 milestone May 16, 2026
@Washi1337
Washi1337 merged commit 47741da into master May 16, 2026
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants