-
Notifications
You must be signed in to change notification settings - Fork 420
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 Roslyn version and tooling to better match NET 5 Preview8 #1897
Conversation
build/Packages.props
Outdated
@@ -5,7 +5,7 @@ | |||
<PropertyGroup> | |||
<MSBuildPackageVersion>16.6.0</MSBuildPackageVersion> | |||
<NuGetPackageVersion>5.2.0</NuGetPackageVersion> | |||
<RoslynPackageVersion>3.8.0-1.20363.1</RoslynPackageVersion> | |||
<RoslynPackageVersion>3.8.0-2.20413.3</RoslynPackageVersion> |
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.
from where do you take the exact version? from https://github.com/dotnet/versions/tree/master/build-info/dotnet/roslyn? I normally go there but I wonder if there is a better place
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.
In this case I am taking it from the sdk, https://github.com/dotnet/sdk/blob/release/5.0.1xx-preview8/eng/Versions.props#L115, but development builds are published to AzDO as well https://dev.azure.com/dnceng/public/_packaging?_a=package&feed=dotnet-tools&package=Microsoft.Net.Compilers.Toolset&version=3.8.0-3.20418.5&protocolType=NuGet&view=versions
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 see thanks
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.
Also, I did not know about dotnet/versions. That is super useful. =)
CHANGELOG.md
Outdated
@@ -1,6 +1,15 @@ | |||
# Changelog | |||
All changes to the project will be documented in this file. | |||
|
|||
## [1.36.2] - 2020-08-18 |
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.
since it has completion service, maybe 1.37.0?
the failure looks legit - looks like our reflection fails because something changed internally in extract interface code action
|
@filipw Indeed. It even reproduces in VS2019. Roslyn PR to fix dotnet/roslyn#46907. Unfortunately won't be able to bump the Roslyn driving the IDE. |
very interesting! I am glad Omnisharp helped catch something Roslyn missed 😀 |
No description provided.