Skip to content

Commit 25cc2bb

Browse files
committed
Update Roslyn to 5.1.0-1.25475.3
1 parent 258e5d0 commit 25cc2bb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "4.2.0",
6+
"version": "5.0.0",
77
"commands": [
88
"dotnet-cake"
99
]
1010
}
1111
}
12-
}
12+
}

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<MicrosoftTestPackageVersion>17.14.0-preview-25107-01</MicrosoftTestPackageVersion>
1111
<MSBuildPackageVersion>17.3.2</MSBuildPackageVersion>
1212
<NuGetPackageVersion>6.15.0-preview.1.86</NuGetPackageVersion>
13-
<RoslynPackageVersion>5.0.0-2.25404.8</RoslynPackageVersion>
13+
<RoslynPackageVersion>5.1.0-1.25475.3</RoslynPackageVersion>
1414
<XunitPackageVersion>2.8.1</XunitPackageVersion>
1515
</PropertyGroup>
1616

scripts/common.cake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#addin "nuget:?package=Newtonsoft.Json&version=11.0.2"
2-
#tool "nuget:?package=GitVersion.CommandLine&prerelease&version=5.0.1"
2+
#tool "nuget:?package=GitVersion.Tool&version=5.12.0"
33

44
#load "platform.cake"
55

@@ -200,7 +200,7 @@ public class BuildEnvironment
200200
this.ShellCommand = Platform.Current.IsWindows ? "powershell" : "bash";
201201
this.ShellArgument = Platform.Current.IsWindows ? "-NoProfile -ExecutionPolicy Bypass /Command" : "-C";
202202
this.ShellScriptFileExtension = Platform.Current.IsWindows ? "ps1" : "sh";
203-
this.MonoRuntimes = new []
203+
this.MonoRuntimes = new[]
204204
{
205205
new MonoRuntime("osx", "mono"),
206206
new MonoRuntime("linux-x86", "mono"),
@@ -211,7 +211,7 @@ public class BuildEnvironment
211211
if (Platform.Current.IsMacOS)
212212
{
213213
this.CurrentMonoRuntime = this.MonoRuntimes[0];
214-
this.BuildMonoRuntimes = new [] { this.CurrentMonoRuntime };
214+
this.BuildMonoRuntimes = new[] { this.CurrentMonoRuntime };
215215
}
216216
else if (Platform.Current.IsLinux)
217217
{

src/OmniSharp.Abstractions/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ internal static class Configuration
44
{
55
public static bool ZeroBasedIndices = false;
66

7-
public const string RoslynVersion = "5.0.0.0";
7+
public const string RoslynVersion = "5.1.0.0";
88
public const string RoslynPublicKeyToken = "31bf3856ad364e35";
99

1010
public readonly static string RoslynFeatures = GetRoslynAssemblyFullName("Microsoft.CodeAnalysis.Features");

0 commit comments

Comments
 (0)