Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ The original DLR site is at [CodePlex](http://dlr.codeplex.com). The DLR was par

Build
-----
You will need to have Visual Studio 2019 16.8.0 or later installed on your machine.
You will need to have Visual Studio 2022 17.14.26 or later and .NET 10.0 SDK installed on your machine.

On Windows machines, start a Visual Studio command prompt and type:

> make

On Unix machines, make sure Mono is installed and in the PATH, and type:

$ make
$ make.ps1

Since the main development is on Windows, Mono bugs may inadvertantly be introduced
Since the main development is on Windows, Mono bugs may inadvertently be introduced
— please report them!
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if(!$global:isUnix) {
if([System.IO.File]::Exists($_VSWHERE)) {
$_VSINSTPATH = & "$_VSWHERE" -latest -requires Microsoft.Component.MSBuild -property installationPath
} else {
Write-Error "Visual Studio 2019 16.8.0 or later is required"
Write-Error "Visual Studio 2022 17.14.26 or later is required"
Exit 1
}

Expand Down
Loading