-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Update LSIF generator to latest bin log reader #67085
Update LSIF generator to latest bin log reader #67085
Conversation
Tagging @jasonmalinowski for a review. Do we expect the binlog version to change frequently? Is there a way that we can make this process a bit more automated and/or coordinated with the MSBuild team to minimize the period of time that a new toolset is unsupported? |
97d699c
to
5095f5f
Compare
@@ -11,6 +11,7 @@ | |||
<ItemGroup> | |||
<Reference Include="System" /> | |||
<Reference Include="System.Core" /> | |||
<Reference Include="System.IO.Compression" /> |
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.
😕 Was this change required?
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.
Yes, it seems that ZipArchive was moved from one DLL to another and this generates a new compiler warning without the reference.
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.
This might indicate a packaging issue with whatever had the demand -- that could have been listed in the NuGet package itself. Not a big deal though.
5095f5f
to
3d7fca6
Compare
Roslyn LSIF generator chokes on 'version 16' bin logs. This PR updates to v16 so that it can properly generate LSIF for codebases/build-environments using newer SDKs.
Fixes AB#1743537