Skip to content

Commit

Permalink
6.0.1-rc-005
Browse files Browse the repository at this point in the history
peachpie v1.0.23
  • Loading branch information
jakubmisek committed Jul 25, 2022
1 parent 159b478 commit b650606
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- common version -->
<VersionFileContent>$([System.IO.File]::ReadAllText($(MSBuildThisFileDirectory)wordpress/wp-includes/version.php) )</VersionFileContent>
<VersionPrefix Condition=" '$(VersionPrefix)'=='' ">$([System.Text.RegularExpressions.Regex]::Match($(VersionFileContent), "\$wp_version\s*=\s*'([0-9\.]+)';").Groups.get_Item(1) )</VersionPrefix>
<VersionSuffix Condition=" '$(VersionSuffix)'=='' ">rc-004</VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)'=='' ">rc-005</VersionSuffix>
<!--PeachpieVersion> specified in global.json </PeachpieVersion-->

<!-- metadata generation -->
Expand Down
4 changes: 2 additions & 2 deletions PeachPied.WordPress.Build.Plugin/build/Sdk.Common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- This file has been generated. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Sdk.props" Sdk="Peachpie.NET.Sdk" Version="1.0.22" />
<Import Project="Sdk.props" Sdk="Peachpie.NET.Sdk" Version="1.0.23" />
<PropertyGroup>
<WpDotNetVersion Condition=" '$(WpDotNetVersion)'=='' ">6.0.1-rc-004</WpDotNetVersion>
<WpDotNetVersion Condition=" '$(WpDotNetVersion)'=='' ">6.0.1-rc-005</WpDotNetVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion PeachPied.WordPress.Build.Plugin/build/Sdk.Common.targets
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- This file has been generated. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Sdk.targets" Sdk="Peachpie.NET.Sdk" Version="1.0.22" />
<Import Project="Sdk.targets" Sdk="Peachpie.NET.Sdk" Version="1.0.23" />
</Project>
4 changes: 2 additions & 2 deletions docs/build-php-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ Project file is an XML file with the following content:

> *MyHelloDollyPlugin.msbuildproj:*
```xml
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.9.3-rc-002">
<Project Sdk="PeachPied.WordPress.Build.Plugin/6.0.1-rc-005">

</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.9.3-rc-002"`. 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. `"/6.0.1-rc-005"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application.

## Build the plugin

Expand Down
2 changes: 1 addition & 1 deletion docs/build-php-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Project file is an XML file with the following content:
</Project>
```

Note the project file specifies a version after the slash, i.e. `"/5.9.3-rc-002"`. 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. `"/6.0.1-rc-005"`. 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.9.3-rc-002
dotnet add package PeachPied.WordPress.AspNetCore --version 6.0.1-rc-005
```

Add the WordPress middleware within your request pipeline, in the `Configure` startup method:
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"msbuild-sdks": {
"Peachpie.NET.Sdk": "1.0.22"
"Peachpie.NET.Sdk": "1.0.23"
}
}

0 comments on commit b650606

Please sign in to comment.