diff --git a/docs/Building-Peachpie.md b/docs/Building-Peachpie.md index 0ed51a5a04..363332542c 100644 --- a/docs/Building-Peachpie.md +++ b/docs/Building-Peachpie.md @@ -13,7 +13,7 @@ Build the solution or projects separately using the build command: dotnet build ``` -The build process outputs NuGet packages locally in `\.nugs\` directory. Packages are versioned with `1.0.0` version, `-dev` suffix. +The build process outputs NuGet packages locally in `\.nugs\` directory. Packages are versioned with `1.2.0` version, `-dev` suffix. ## Visual Studio 2017+ @@ -31,17 +31,17 @@ PS \build\> .\update-cache.ps1 Reference the development packages by your projects, i.e. ```xml - + ``` or ```xml - + ``` or when using `global.json` to specify Sdks versions: ```json { "msbuild-sdks": { - "Peachpie.NET.Sdk": "1.0.0-dev" + "Peachpie.NET.Sdk": "1.2.0-dev" } } ```