Skip to content

Commit

Permalink
Upgrade to .NET Core SDK 3.1.201
Browse files Browse the repository at this point in the history
  • Loading branch information
xtqqczze committed May 11, 2020
1 parent 0543068 commit 7861934
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pipelines/init.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
parameters:
# Configuration: Release
Verbosity: Normal
DotNetVersion: "3.0.100"
DotNetVersion: "3.1.201"
CakeVersion: "0.32.1"
NuGetVersion: "4.9.2"
steps:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resources:

variables:
Verbosity: Diagnostic
DotNetVersion: "3.0.100"
DotNetVersion: "3.1.201"
CakeVersion: "0.32.1"
NuGetVersion: "4.9.2"
GitVersionVersion: "5.0.1"
Expand Down
2 changes: 1 addition & 1 deletion build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"DotNetInstallScriptURL": "https://dot.net/v1",
"DotNetChannel": "Preview",
"DotNetVersions": [
"3.0.100",
"3.1.201",
"5.0.100-preview.2.20169.1"
],
"RequiredMonoVersion": "6.6.0",
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.0.100"
"version": "3.1.201"
}
}
2 changes: 1 addition & 1 deletion test-assets/test-projects/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.0.100"
"version": "3.1.201"
}
}
4 changes: 2 additions & 2 deletions tests/OmniSharp.Tests/DotNetCliServiceFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public void GetVersion()
var version = dotNetCli.GetVersion();

Assert.Equal(3, version.Major);
Assert.Equal(0, version.Minor);
Assert.Equal(100, version.Patch);
Assert.Equal(1, version.Minor);
Assert.Equal(201, version.Patch);
Assert.Equal("", version.Release);
}
}
Expand Down

0 comments on commit 7861934

Please sign in to comment.