Skip to content

Commit 2445d48

Browse files
committed
Update expected roll-forward versions
1 parent 340574d commit 2445d48

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ public void It_targets_the_right_shared_framework(string targetFramework, string
5353
// Test behavior when implicit version differs for framework-dependent and self-contained apps
5454
[Theory]
5555
[InlineData("netcoreapp1.0", false, true, "1.0.5")]
56-
[InlineData("netcoreapp1.0", true, true, "1.0.10")]
56+
[InlineData("netcoreapp1.0", true, true, "1.0.11")]
5757
[InlineData("netcoreapp1.0", false, false, "1.0.5")]
5858
[InlineData("netcoreapp1.1", false, true, "1.1.2")]
59-
[InlineData("netcoreapp1.1", true, true, "1.1.7")]
59+
[InlineData("netcoreapp1.1", true, true, "1.1.8")]
6060
[InlineData("netcoreapp1.1", false, false, "1.1.2")]
6161
[InlineData("netcoreapp2.0", false, true, "2.0.0")]
6262
[InlineData("netcoreapp2.0", true, true, TestContext.LatestRuntimePatchForNetCoreApp2_0)]

src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantRestoreToUseImplicitPackages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void It_uses_NetstandardLibrary20x_as_the_implicit_version_for_NetStandar
5151
lockFile.GetTarget(NuGetFramework.Parse(".NETStandard,Version=v2.0"), null);
5252
var netStandardLibrary =
5353
target.Libraries.Single(l => l.Name == "NETStandard.Library");
54-
netStandardLibrary.Version.ToString().Should().Be("2.0.2");
54+
netStandardLibrary.Version.ToString().Should().Be("2.0.3");
5555
}
5656

5757
[Fact]

src/Tests/Microsoft.NET.TestFramework/TestContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static TestContext Current
4545
}
4646
}
4747

48-
public const string LatestRuntimePatchForNetCoreApp2_0 = "2.0.6";
48+
public const string LatestRuntimePatchForNetCoreApp2_0 = "2.0.7";
4949

5050
public void AddTestEnvironmentVariables(SdkCommandSpec command)
5151
{

0 commit comments

Comments
 (0)