-
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 MSBuild ref dependency #71069
Conversation
@@ -32,7 +32,7 @@ | |||
<MicrosoftVisualStudioLanguageServerProtocolPackagesVersion>17.8.9-preview</MicrosoftVisualStudioLanguageServerProtocolPackagesVersion> | |||
<MicrosoftVisualStudioShellPackagesVersion>17.8.36711</MicrosoftVisualStudioShellPackagesVersion> | |||
<!-- The version of MSBuild that we reference for things depending on MSBuildWorkspace --> | |||
<RefOnlyMicrosoftBuildPackagesVersion>16.10.0</RefOnlyMicrosoftBuildPackagesVersion> | |||
<RefOnlyMicrosoftBuildPackagesVersion>17.3.2</RefOnlyMicrosoftBuildPackagesVersion> |
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.
We may want to just get rid of this in favor of using the other variable below, but might be good to do this one step at a time.
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, I think we should align onto a single version. Roslyn currently uses 17.5.0 which isn't in SBRP, so we would need to add it there.
I'll hold off on merging this until we can resolve the test issue at dotnet/installer#17875 (comment) in case that requires further changes related to the version. |
Upgrades the ref-only dependency version for MSBuild. This helps to resolve the issue identified in dotnet/installer#17875 (comment) where the previous dependency on MSBuild 16.10.0 is causing an issue in the source build of the format repo due to NETStandard1.x dependency. This version matches the version used by the format repo.