-
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
Remove the multitarget from ILCompiler.Reflection.R2R #66175
Conversation
Test failure is #65791 |
@@ -8,7 +8,7 @@ | |||
<AssemblyKey>Open</AssemblyKey> | |||
<IsDotNetFrameworkProductAssembly>true</IsDotNetFrameworkProductAssembly> | |||
<!-- ILSpy requires this assembly to target netstandard2.0 --> | |||
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks> | |||
<TargetFrameworks>netstandard2.0</TargetFrameworks> |
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.
Post-merge nit: you can also drop the s
for a tiny build-perf improvement.
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.
Have we ever considered a message when TargetFrameworks contains only one entry? It would be noisy of course if there were conditions involved such that sometimes it has more than one.
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.
Run regex find&replace to fixup all places in the repo: #66198
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.
The change also makes the logs easier to read, as there's no re-invocation of itself.
This isn't necessary because the project doesn't have any .NET 6 dependencies anymore or trim warnings.