-
Notifications
You must be signed in to change notification settings - Fork 195
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
Explicitly reference Roslyn compiler toolset version that will ship in preview 7 #727
Conversation
dougbu
commented
Jul 2, 2019
- see also [master] Update dependencies from dotnet/arcade aspnet/Extensions efcore#16370 and Update nullability convention to new nullability metadata efcore#16385 discussions
- grab latest from the '.NET Core 3 Release' channel
…n preview 7 - see also dotnet/efcore#16370 and dotnet/efcore#16385 discussions - grab latest from the '.NET Core 3 Release' channel
@wtgodbe new subscription for 'release/3.0-preview7' is '9516c447-64e2-49be-1c34-08d6fb3704ce' |
|
eng/Versions.props
Outdated
@@ -68,6 +70,8 @@ | |||
<SystemDiagnosticsDiagnosticSourcePackageVersion>4.6.0-preview7.19329.3</SystemDiagnosticsDiagnosticSourcePackageVersion> | |||
<SystemTextEncodingsWebPackageVersion>4.6.0-preview7.19329.3</SystemTextEncodingsWebPackageVersion> | |||
<SystemReflectionMetadataPackageVersion>1.7.0-preview7.19329.3</SystemReflectionMetadataPackageVersion> | |||
<!-- Packages from dotnet/roslyn --> | |||
<MicrosoftNetCompilersToolsetVersion>3.3.0-beta1-19351-01</MicrosoftNetCompilersToolsetVersion> |
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.
Should be MicrosoftNetCompilersToolsetPackageVersion
@dougbu I've switched to |
@@ -11,7 +11,7 @@ | |||
<ItemGroup> | |||
<!-- Track compiler separately from Arcade.--> | |||
<PackageReference Include="Microsoft.Net.Compilers.Toolset" | |||
Version="$(MicrosoftNetCompilersToolsetVersion)" | |||
Version="$(MicrosoftNetCompilersToolsetPackageVersion)" |
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 couldn't get darc
to accept MicrosoftNetCompilersToolsetPackageVersion
when I tried in EF Core and it updated Version.props
correctly using MicrosoftNetCompilersToolsetVersion
. But, I agree MicrosoftNetCompilersToolsetVersion
looked weird. Glad to see this fixed.
Thanks @wtgodbe❕ |