Skip to content

Commit d023b38

Browse files
committed
update readme, NET 9 SDK required to build platform
1 parent bae73dc commit d023b38

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

docs/Building-Peachpie.md

+6-10
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ The solution consists of a set of standard MSBuild 15.0 project files. The stand
22

33
## Prerequisites
44

5-
- .NET 5.0 SDK
6-
- Visual Studio 2019 (Optional)
5+
- .NET 9.0 SDK
6+
- Visual Studio 2022 (Optional)
77

88
## Command Line
99

@@ -13,11 +13,7 @@ Build the solution or projects separately using the build command:
1313
dotnet build
1414
```
1515

16-
The build process outputs NuGet packages locally in `\.nugs\` directory. Packages are versioned with `1.0.0` version, `-dev` suffix.
17-
18-
## Visual Studio 2017+
19-
20-
Visual Studio should automatically restore NuGet packages. If this feature is disabled or not working properly, run `dotnet restore` on command line first.
16+
The build process outputs NuGet packages locally in `\.nugs\` directory. Packages are versioned with `1.2.0` version, `-dev` suffix.
2117

2218
## Developing with Peachpie from sources
2319

@@ -31,17 +27,17 @@ PS \build\> .\update-cache.ps1
3127

3228
Reference the development packages by your projects, i.e.
3329
```xml
34-
<Project Sdk="Peachpie.NET.Sdk/1.0.0-dev">
30+
<Project Sdk="Peachpie.NET.Sdk/1.2.0-dev">
3531
```
3632
or
3733
```xml
38-
<PackageReference Include="Peachpie.Library.PDO.MySql" Version="1.0.0-dev" />
34+
<PackageReference Include="Peachpie.Library.PDO.MySql" Version="1.2.0-dev" />
3935
```
4036
or when using `global.json` to specify Sdks versions:
4137
```json
4238
{
4339
"msbuild-sdks": {
44-
"Peachpie.NET.Sdk": "1.0.0-dev"
40+
"Peachpie.NET.Sdk": "1.2.0-dev"
4541
}
4642
}
4743
```

docs/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
---
44

5-
- [Getting Started](https://github.com/iolevel/peachpie/wiki/Getting-Started) - for a quick start with PeachPie, and how to use the platform.
5+
- [Getting Started](https://docs.peachpie.io/get-started/) - for a quick start with PeachPie, and how to use the platform.
66
- [Documentation](https://docs.peachpie.io/) - The project documentation.

0 commit comments

Comments
 (0)