Skip to content

Commit

Permalink
docs 5.7.2-preview8
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmisek committed Jun 15, 2021
1 parent 5edcf6f commit 86fb550
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/build-php-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Project file is an XML file with the following content:

> *MyHelloDollyPlugin.msbuildproj:*
```xml
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.7.0-preview6">
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.7.2-preview8">

</Project>
```

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

Expand Down
4 changes: 2 additions & 2 deletions docs/build-php-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Project file is an XML file with the following content:

> *MyWordPressTheme.msbuildproj:*
```xml
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.7.0-preview6">
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.7.2-preview8">
<PropertyGroup>
<WpContentTarget>themes</WpContentTarget>
</PropertyGroup>
</Project>
```

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

Expand Down
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 86fb550

Please sign in to comment.