From af453e3a6bf68ec171f03df15a3b06acbc174752 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Tue, 9 May 2017 11:09:38 -0700 Subject: [PATCH 1/3] Updating the SDK to one that carries updated versions of the implicit 1.0 versions. --- build/DependencyVersions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props index 46d79e0e5..6e2132971 100644 --- a/build/DependencyVersions.props +++ b/build/DependencyVersions.props @@ -4,7 +4,7 @@ 2.0.0-preview1-002111-00 15.3.0-preview-000117-01 2.0.0-rc4-61325-08 - 2.0.0-alpha-20170505-1 + 2.0.0-alpha-20170509-2 4.3.0-beta1-2418 1.0.0-rel-20170501-473 15.3.0-preview-20170502-03 From 359a9d2f362b16f4f321954f2764b545f3932895 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Tue, 9 May 2017 11:40:24 -0700 Subject: [PATCH 2/3] Updating the backwards compatible runtime to 1.1.2. --- build/BackwardsCompatibilityRuntimes.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/BackwardsCompatibilityRuntimes.props b/build/BackwardsCompatibilityRuntimes.props index 6805d4377..72eddd70d 100644 --- a/build/BackwardsCompatibilityRuntimes.props +++ b/build/BackwardsCompatibilityRuntimes.props @@ -1,7 +1,7 @@ release/1.1.0 - 1.1.1 + 1.1.2 1.1.0 1.1.0 From c25fdd833ee8acdd76434fe459bc8abc7768ee55 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Tue, 9 May 2017 12:12:47 -0700 Subject: [PATCH 3/3] Fixing tests to look for 1.1.2. --- test/dotnet.Tests/PackagedCommandTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dotnet.Tests/PackagedCommandTests.cs b/test/dotnet.Tests/PackagedCommandTests.cs index d5c83d97a..a4eff285b 100644 --- a/test/dotnet.Tests/PackagedCommandTests.cs +++ b/test/dotnet.Tests/PackagedCommandTests.cs @@ -162,7 +162,7 @@ namespace Microsoft.DotNet.Tests .Execute(toolPrefersCLIRuntime ? "portable-v1-prefercli" : "portable-v1"); result.Should().Pass() - .And.HaveStdOutContaining("I'm running on shared framework version 1.1.1!"); + .And.HaveStdOutContaining("I'm running on shared framework version 1.1.2!"); } @@ -215,7 +215,7 @@ namespace Microsoft.DotNet.Tests .Execute("portable-v1"); result.Should().Pass() - .And.HaveStdOutContaining("I'm running on shared framework version 1.1.1!"); + .And.HaveStdOutContaining("I'm running on shared framework version 1.1.2!"); } [Fact]