From 244deca019c578cc081aed0e56387f1daf5d6ad6 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Thu, 18 May 2017 11:28:54 +0100 Subject: [PATCH] Update libraries and samples to .NET Core 2.0 --- build/common.props | 8 +++++--- build/dependencies.props | 9 +++------ build/version.props | 6 ------ samples/angular/MusicStore/MusicStore.csproj | 2 +- samples/misc/LatencyTest/LatencyTest.csproj | 2 +- .../NodeServicesExamples/NodeServicesExamples.csproj | 2 +- samples/misc/Webpack/Webpack.csproj | 2 +- samples/react/MusicStore/MusicStore.csproj | 7 +------ samples/react/ReactGrid/ReactGrid.csproj | 2 +- .../Microsoft.AspNetCore.AngularServices.csproj | 2 +- .../Microsoft.AspNetCore.NodeServices.Sockets.csproj | 6 +++--- .../Microsoft.AspNetCore.NodeServices.csproj | 4 ++-- .../Microsoft.AspNetCore.ReactServices.csproj | 2 +- .../Microsoft.AspNetCore.SpaServices.csproj | 2 +- templates/WebApplicationBasic/WebApplicationBasic.csproj | 4 ++-- version.props | 7 +++++++ 16 files changed, 31 insertions(+), 36 deletions(-) delete mode 100644 build/version.props create mode 100644 version.props diff --git a/build/common.props b/build/common.props index de4792ed5e..89ade5d9ae 100644 --- a/build/common.props +++ b/build/common.props @@ -1,7 +1,6 @@ - - + Microsoft ASP.NET Core @@ -10,11 +9,14 @@ $(MSBuildThisFileDirectory)Key.snk true true - true $(VersionSuffix)-$(BuildNumber) + + + + diff --git a/build/dependencies.props b/build/dependencies.props index c03920fdf2..aab2fe9898 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,14 +1,11 @@ - 1.1.0 - 1.1.1 - 1.0.0-msbuild3-final + 2.0.0-* 5.0.2 4.3.0 + 2.1.0-* 10.0.1 - 2.0.0-* - 4.5.24 - 1.6.1 + $(BundledNETStandardPackageVersion) 4.7.0 diff --git a/build/version.props b/build/version.props deleted file mode 100644 index 2ebde7d57e..0000000000 --- a/build/version.props +++ /dev/null @@ -1,6 +0,0 @@ - - - 1.1.2 - preview1 - - diff --git a/samples/angular/MusicStore/MusicStore.csproj b/samples/angular/MusicStore/MusicStore.csproj index 61b754bdb1..8f811943be 100644 --- a/samples/angular/MusicStore/MusicStore.csproj +++ b/samples/angular/MusicStore/MusicStore.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false diff --git a/samples/misc/LatencyTest/LatencyTest.csproj b/samples/misc/LatencyTest/LatencyTest.csproj index 3aec2336f5..8c17cdb50f 100644 --- a/samples/misc/LatencyTest/LatencyTest.csproj +++ b/samples/misc/LatencyTest/LatencyTest.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 false exe diff --git a/samples/misc/NodeServicesExamples/NodeServicesExamples.csproj b/samples/misc/NodeServicesExamples/NodeServicesExamples.csproj index 6234309604..e2d0753b17 100644 --- a/samples/misc/NodeServicesExamples/NodeServicesExamples.csproj +++ b/samples/misc/NodeServicesExamples/NodeServicesExamples.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false diff --git a/samples/misc/Webpack/Webpack.csproj b/samples/misc/Webpack/Webpack.csproj index 2f5b7d721a..d2606828c5 100644 --- a/samples/misc/Webpack/Webpack.csproj +++ b/samples/misc/Webpack/Webpack.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false diff --git a/samples/react/MusicStore/MusicStore.csproj b/samples/react/MusicStore/MusicStore.csproj index 388bcc734c..e8ab8d9226 100644 --- a/samples/react/MusicStore/MusicStore.csproj +++ b/samples/react/MusicStore/MusicStore.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false @@ -31,9 +31,4 @@ - - - - - diff --git a/samples/react/ReactGrid/ReactGrid.csproj b/samples/react/ReactGrid/ReactGrid.csproj index 5571776346..cefd991a8f 100644 --- a/samples/react/ReactGrid/ReactGrid.csproj +++ b/samples/react/ReactGrid/ReactGrid.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false diff --git a/src/Microsoft.AspNetCore.AngularServices/Microsoft.AspNetCore.AngularServices.csproj b/src/Microsoft.AspNetCore.AngularServices/Microsoft.AspNetCore.AngularServices.csproj index 5f3e157027..9b7863fec6 100644 --- a/src/Microsoft.AspNetCore.AngularServices/Microsoft.AspNetCore.AngularServices.csproj +++ b/src/Microsoft.AspNetCore.AngularServices/Microsoft.AspNetCore.AngularServices.csproj @@ -4,7 +4,7 @@ Helpers for building Angular applications on ASP.NET Core. - net451;netstandard1.6 + netcoreapp2.0 aspnetcore;aspnetcoremvc;nodeservices true diff --git a/src/Microsoft.AspNetCore.NodeServices.Sockets/Microsoft.AspNetCore.NodeServices.Sockets.csproj b/src/Microsoft.AspNetCore.NodeServices.Sockets/Microsoft.AspNetCore.NodeServices.Sockets.csproj index 3319bf294c..8ebd6a6244 100644 --- a/src/Microsoft.AspNetCore.NodeServices.Sockets/Microsoft.AspNetCore.NodeServices.Sockets.csproj +++ b/src/Microsoft.AspNetCore.NodeServices.Sockets/Microsoft.AspNetCore.NodeServices.Sockets.csproj @@ -4,7 +4,7 @@ Socket-based RPC for Microsoft.AspNetCore.NodeServices. - net451;netstandard1.6 + netcoreapp2.0 aspnetcore;aspnetcoremvc;nodeservices true @@ -17,11 +17,11 @@ - + - + diff --git a/src/Microsoft.AspNetCore.NodeServices/Microsoft.AspNetCore.NodeServices.csproj b/src/Microsoft.AspNetCore.NodeServices/Microsoft.AspNetCore.NodeServices.csproj index 5c440e4a55..0473d70507 100644 --- a/src/Microsoft.AspNetCore.NodeServices/Microsoft.AspNetCore.NodeServices.csproj +++ b/src/Microsoft.AspNetCore.NodeServices/Microsoft.AspNetCore.NodeServices.csproj @@ -4,7 +4,7 @@ Invoke Node.js modules at runtime in ASP.NET Core applications. - net451;netstandard1.6 + netcoreapp2.0 aspnetcore;aspnetcoremvc;nodeservices true @@ -19,7 +19,7 @@ - + diff --git a/src/Microsoft.AspNetCore.ReactServices/Microsoft.AspNetCore.ReactServices.csproj b/src/Microsoft.AspNetCore.ReactServices/Microsoft.AspNetCore.ReactServices.csproj index 0f6e26a535..97f288a67d 100644 --- a/src/Microsoft.AspNetCore.ReactServices/Microsoft.AspNetCore.ReactServices.csproj +++ b/src/Microsoft.AspNetCore.ReactServices/Microsoft.AspNetCore.ReactServices.csproj @@ -4,7 +4,7 @@ Helpers for building React applications on ASP.NET Core. - net451;netstandard1.6 + netcoreapp2.0 aspnetcore;aspnetcoremvc;nodeservices true diff --git a/src/Microsoft.AspNetCore.SpaServices/Microsoft.AspNetCore.SpaServices.csproj b/src/Microsoft.AspNetCore.SpaServices/Microsoft.AspNetCore.SpaServices.csproj index 6eaa36559e..39839ed63f 100644 --- a/src/Microsoft.AspNetCore.SpaServices/Microsoft.AspNetCore.SpaServices.csproj +++ b/src/Microsoft.AspNetCore.SpaServices/Microsoft.AspNetCore.SpaServices.csproj @@ -4,7 +4,7 @@ Helpers for building single-page applications on ASP.NET MVC Core. - net451;netstandard1.6 + netcoreapp2.0 aspnetcore;aspnetcoremvc;nodeservices true diff --git a/templates/WebApplicationBasic/WebApplicationBasic.csproj b/templates/WebApplicationBasic/WebApplicationBasic.csproj index eba7c6c217..12a3277e02 100644 --- a/templates/WebApplicationBasic/WebApplicationBasic.csproj +++ b/templates/WebApplicationBasic/WebApplicationBasic.csproj @@ -3,7 +3,7 @@ - netcoreapp1.1 + netcoreapp2.0 true false @@ -14,7 +14,7 @@ - + diff --git a/version.props b/version.props new file mode 100644 index 0000000000..6af4f81de2 --- /dev/null +++ b/version.props @@ -0,0 +1,7 @@ + + + + 2.0.0 + preview2 + +