From 70d5294038c793380277dd8651abb5f94c0e3e4b Mon Sep 17 00:00:00 2001 From: Pavel Koneski Date: Wed, 18 Feb 2026 14:10:08 -0800 Subject: [PATCH] Update minimum Visual Studio requirements --- README.md | 6 +++--- make.ps1 | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d1ab6925..11942583 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ 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: @@ -39,7 +39,7 @@ On Windows machines, start a Visual Studio command prompt and type: 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! diff --git a/make.ps1 b/make.ps1 index 4dd513ec..b54fe23e 100755 --- a/make.ps1 +++ b/make.ps1 @@ -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 }