-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
AssemblyName.GetPublicKeyToken() may return byte[160] instead of byte[8] #69153
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
Tagging subscribers to this area: @vitek-karas, @agocke, @VSadov Issue DetailsThis is a regression in .NET 7, possibly due to #62866. Consider the following test: string assemblyPath = Environment.ExpandEnvironmentVariables("ILmergeProduced.dll");
Assert.Equal(8, AssemblyName.GetAssemblyName(this.assemblyPath).GetPublicKeyToken()?.Length) That test passes on net472 and net6.0, but fails on net7.0 with:
Consider this full repro.
|
This comment was marked as off-topic.
This comment was marked as off-topic.
@AArnott - thanks for reporting. I will take a look. |
Related to or duplicate of #66785 |
@VSadov the repro is just two lines of code, plus the assembly to be loaded. Maybe check in the assembly? |
This is not related to #66785 . That is a matter of visualizing missing PublicKeyToken - whether we write out It looks like 6.0 prints that and we should too, but I wonder if that is always the case or there are other hints to consider on whether to print this or not. |
I assume #69157 fixed this. |
I think you meant to add this comment to #66785 . I believe that the problem in both #66785 and #69153 (this issue) is that the |
I thought #66785 was an issue similar to the one that was fixed in Line 16 in 215b39a
just like with culture name we expect empty instead of but maybe this is an issue with flags. |
The runtime unconditionally sets
|
@AArnott Is it possible to share the dll that exhibits this behavior ( I have managed to make the attached test to run, but it is passing. I think it would be simpler if I just have the dll. |
@VSadov Yes, check out my full repro (linked from the issue description) to get an actual repro that includes the dll. |
This is a regression in .NET 7, possibly due to #62866.
This only repros when the
AssemblyName
is obtained fromAssemblyName.GetAssemblyName
when passed the path to an ILMerge output assembly.Consider the following test:
That test passes on net472 and net6.0, but fails on net7.0 with:
Consider this full repro.
Just open in VS and run tests in Test Explorer (assuming .NET 7 Preview 5 is installed).
The text was updated successfully, but these errors were encountered: