From 3514db05da57d8b6413b3d6fc5bb70e42106edeb Mon Sep 17 00:00:00 2001 From: Nick Guerrera Date: Thu, 31 Aug 2017 17:09:05 -0700 Subject: [PATCH 1/2] Update shared framework dependency --- build/DependencyVersions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props index 9424c7232..53c08799b 100644 --- a/build/DependencyVersions.props +++ b/build/DependencyVersions.props @@ -1,7 +1,7 @@ - 2.0.1-servicing-25623-05 + 2.0.1-servicing-25630-01 15.3.409 2.3.2-beta1-61921-05 2.3.0-pre-20170727-1 From 03293f5b909d8e740bef17b1ce2a02c02e6895ee Mon Sep 17 00:00:00 2001 From: Nick Guerrera Date: Thu, 31 Aug 2017 17:56:15 -0700 Subject: [PATCH 2/2] Fix test expectation for package restored n new project --- test/dotnet-new.Tests/GivenThatIWantANewApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-new.Tests/GivenThatIWantANewApp.cs b/test/dotnet-new.Tests/GivenThatIWantANewApp.cs index a468bd7b8..f35781afa 100644 --- a/test/dotnet-new.Tests/GivenThatIWantANewApp.cs +++ b/test/dotnet-new.Tests/GivenThatIWantANewApp.cs @@ -105,7 +105,7 @@ namespace Microsoft.DotNet.New.Tests var sharedFxDir = dotnetDir .GetDirectory("shared", "Microsoft.NETCore.App") .EnumerateDirectories() - .Single(d => d.Name.StartsWith("2.0.0")); + .Single(d => d.Name.StartsWith("2.0.1")); // NOTE: implicit package version will be 2.0.0 again when https://github.com/dotnet/cli/pull/7489 can be merged. if (packageName == "microsoft.netcore.app") {