From 38b2a11f851a629c5c7501493c58eaffe63a264f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20M=C3=AD=C5=A1ek?= Date: Mon, 11 Jan 2021 14:47:25 +0100 Subject: [PATCH] peachpie 1.0.0-preview5 - fixes https://github.com/iolevel/wpdotnet-sdk/issues/94 - should fix https://github.com/iolevel/wpdotnet-sdk/issues/92 - fixes https://github.com/iolevel/wpdotnet-sdk/issues/79 - improves perf. --- Directory.Build.props | 2 +- PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props | 4 ++-- PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets | 2 +- docs/build-php-plugin.md | 4 ++-- docs/build-php-theme.md | 4 ++-- docs/overview.md | 2 +- global.json | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index e32a2f760..3c33217f9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -9,7 +9,7 @@ 5.6.0 - preview4 + preview5 diff --git a/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props b/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props index 103bef155..7b90506f3 100644 --- a/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props +++ b/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props @@ -1,7 +1,7 @@ - + -5.6.0-preview4 +5.6.0-preview5 diff --git a/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets b/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets index 896fe211c..a056912c4 100644 --- a/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets +++ b/PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets @@ -1,4 +1,4 @@ - + diff --git a/docs/build-php-plugin.md b/docs/build-php-plugin.md index 851b59c88..5d7482d4d 100644 --- a/docs/build-php-plugin.md +++ b/docs/build-php-plugin.md @@ -45,14 +45,14 @@ Project file is an XML file with the following content: > *MyHelloDollyPlugin.msbuildproj:* ```xml - + ``` For most cases, the project file does not specify anything else as all the properties are defined by default in the Sdk. In case a build property or a build item needs to be altered, add it to your project file. -Note the project file specifies a version after the slash, i.e. `"/5.5.1-preview4"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application. +Note the project file specifies a version after the slash, i.e. `"/5.5.1-preview5"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application. ## Build the plugin diff --git a/docs/build-php-theme.md b/docs/build-php-theme.md index 8aac10fcc..14865af77 100644 --- a/docs/build-php-theme.md +++ b/docs/build-php-theme.md @@ -25,14 +25,14 @@ Project file is an XML file with the following content: > *MyWordPressTheme.msbuildproj:* ```xml - + themes ``` -Note the project file specifies a version after the slash, i.e. `"/5.5.1-preview4"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application. +Note the project file specifies a version after the slash, i.e. `"/5.5.1-preview5"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application. ## Build the theme diff --git a/docs/overview.md b/docs/overview.md index 7c38fa434..2d1f5db84 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -20,7 +20,7 @@ Open or create an ASP NET Core application, version 3.0 or newer. Add a package reference to [`"Peachpied.WordPress.AspNetCore"`](https://www.nuget.org/packages/PeachPied.WordPress.AspNetCore/) (note it is a pre-release package): ```shell -dotnet add package PeachPied.WordPress.AspNetCore --version 5.5.1-preview4 +dotnet add package PeachPied.WordPress.AspNetCore --version 5.5.1-preview5 ``` Add WordPress middleware within your request pipeline, in the `Configure` startup method: diff --git a/global.json b/global.json index 6774ecffa..2563e2473 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "msbuild-sdks": { - "Peachpie.NET.Sdk": "1.0.0-preview4" + "Peachpie.NET.Sdk": "1.0.0-preview5" } } \ No newline at end of file