From 787080cdc89a3802fbaa27854786c3bfd200c11a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20M=C3=AD=C5=A1ek?= Date: Thu, 20 Feb 2025 14:33:58 +0100 Subject: [PATCH] 1.2.0 --- docs/Building-Peachpie.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" } } ```