PeachPie Nightly Builds#
The latest build of PeachPie is always available on NuGet.org or on our AppVeyor feed (https://ci.appveyor.com/nuget/peachpie). The build is annotated as a PreRelease version - the packages have pre-release version specified.
Use the Nightly Build#
Latest daily build version needs to be specified in your PHP project. Edit the .msbuildproj
project file and update the PeachPie package versions to the latest version pre-release available.
<Project Sdk="Peachpie.NET.Sdk/1.2.0-r14700">
<PropertyGroup>
<OutputType>library</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="**/*.php" />
</ItemGroup>
</Project>
In this sample, we are using version
1.2.0-r14700
.
Note, if you reference any other Peachpie packages in other projects, it is recommended to use the same version across the entire solution.