Skip to content

Commit 1017fe2

Browse files
authored
Merge pull request #286 from BCSharp/doc_vs_ver
Update minimum Visual Studio requirements
2 parents 200864a + 70d5294 commit 1017fe2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ The original DLR site is at [CodePlex](http://dlr.codeplex.com). The DLR was par
3131

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

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

3838
> make
3939

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

42-
$ make
42+
$ make.ps1
4343

44-
Since the main development is on Windows, Mono bugs may inadvertantly be introduced
44+
Since the main development is on Windows, Mono bugs may inadvertently be introduced
4545
— please report them!

make.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!$global:isUnix) {
2121
if([System.IO.File]::Exists($_VSWHERE)) {
2222
$_VSINSTPATH = & "$_VSWHERE" -latest -requires Microsoft.Component.MSBuild -property installationPath
2323
} else {
24-
Write-Error "Visual Studio 2019 16.8.0 or later is required"
24+
Write-Error "Visual Studio 2022 17.14.26 or later is required"
2525
Exit 1
2626
}
2727

0 commit comments

Comments
 (0)