diff --git a/docs/build-php-plugin.md b/docs/build-php-plugin.md index 4e402661e..64286c684 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.7.0-preview6"`. 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.7.2-preview8"`. 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 d00138f59..07404979d 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.7.0-preview6"`. 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.7.2-preview8"`. 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 71246001f..79bd2b2af 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.7.0-preview6 +dotnet add package PeachPied.WordPress.AspNetCore --version 5.7.8-preview8 ``` Add WordPress middleware within your request pipeline, in the `Configure` startup method: