-
Notifications
You must be signed in to change notification settings - Fork 127
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
Target net6.0 for linker #2202
Target net6.0 for linker #2202
Conversation
src/ILLink.Tasks/ILLink.Tasks.csproj
Outdated
@@ -2,7 +2,7 @@ | |||
<PropertyGroup> | |||
<!-- Keep these in sync with _ILLinkTasksTFM in Sdk.props. --> |
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.
Might be worth updating this comment.
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.
LGTM. Does this change anything since the SDK usually forces everyone to net6.0 in publishing anyway?
Not really - the only scenario affected is if you run linker directly. Nobody does that - except us when debugging the linker. |
This seems to be causing issues dotnet/sdk#19655 and dotnet/runtime#57203 |
Working on it... |
I'm taking a look. This appears to be caused by the analyzer not taking into account the |
Ok, the error was about wrong path. Thanks for clarification @vitek-karas. |
Commit migrated from dotnet/linker@7bf5cd4
Fixes #2118