* update versions exposed to users

* update node path

* update path
This commit is contained in:
Stella 2023-07-07 16:09:18 -07:00 коммит произвёл GitHub
Родитель 9581bb2998
Коммит 3c88bdebfa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -71,8 +71,8 @@ namespace Microsoft.PythonTools.LanguageServerClient {
var folderPath = Path.Combine((string)installDir, @"MSBuild\Microsoft\VisualStudio\NodeJs");
if (Directory.Exists(folderPath)) {
var filePath = Environment.Is64BitOperatingSystem
? Path.Combine(folderPath, "win-x64", "node.exe")
: Path.Combine(folderPath, "node.exe");
? Path.Combine(folderPath, "node.exe")
: Path.Combine(folderPath, "win-x86","node.exe");
if (File.Exists(filePath)) {
return filePath;