-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Update to new interceptable location APIs #55285
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
Conversation
@dotnet/source-build-internal Any guidance on the source build issues here? |
I believe these two new prebuilts should be added to the SourceBuildPrebuiltBaseline as allowed prebuilts. These won't be prebuilts in the product source-build because the live Rolsyn version will get picked up because the dependency is declared in the Version.Details.xml file. |
public IInvocationOperation Operation { get; } | ||
|
||
public override bool Equals(object o) => | ||
o is Endpoint other && Location == other.Location && SignatureEquals(this, other); | ||
o is Endpoint other && InterceptableLocation == other.InterceptableLocation && SignatureEquals(this, other); |
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.
I don't think we implemented operator ==
on these. That might be a bug on our side. I'll have to follow up.
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.
An explicit ==
implementation would be nice. I assume this does implement equality checks correctly though given that it does the correct things in our cache invalidation tests for incremental generators.
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.
Source-Build change LGTM.
@dotnet/aspnet-build Can I get help merging this? The macOS build is successful on AzDo but there appears to be an issue with the GH status check. |
Addresses #55152