-
Notifications
You must be signed in to change notification settings - Fork 175
Updated to Roslyn 2.6.0 #207
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
@@ -31,7 +31,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.4.0" /> | |||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.6.0" /> | |||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.0" /> |
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 we bump this one too?
It's available as 2.0.3 from NuGet now
https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/
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.
Good point
@@ -36,12 +36,6 @@ public class ScriptCompiler | |||
|
|||
static ScriptCompiler() | |||
{ | |||
// reset default scripting mode to latest language version to enable C# 7.1 features |
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.
Always good to get rid of some reflection hacks 👍
@@ -2,7 +2,7 @@ | |||
|
|||
<PropertyGroup> | |||
<Description>A cross platform library allowing you to run C# (CSX) scripts from a project.json dependency definition file and with support for debugging. Based on Roslyn.</Description> | |||
<VersionPrefix>0.16.0</VersionPrefix> | |||
<VersionPrefix>0.17.0</VersionPrefix> |
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.
yeah, we just go straight to 0.17.0 👍
@@ -24,7 +24,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.0" /> | |||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.3" /> |
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.
Nice 👍
This allows us to use C# 7.2 and remove some reflection.
Also, we could release this straight away as 0.17.0 including the recent bug fixes, or we release 0.16.1 first.