1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
   | "terminal.integrated.profiles.windows": {         "Developer PowerShell for VS 2019": {             "path": "C:\\Windows\\SysWOW64\\WindowsPowerShell\\v1.0\\powershell.exe",             "args": [                 "-noe",                 "-c",                 "Import-Module 'C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/Tools/Microsoft.VisualStudio.DevShell.dll'; Enter-VsDevShell 863d7289"             ]         },         "Developer Command Prompt for VS 2019": {             "path": [                 "${env:windir}\\Sysnative\\cmd.exe",                 "${env:windir}\\System32\\cmd.exe"             ],             "args": [                 "/k",                 "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\Tools\\VsDevCmd.bat"             ]         }     }
  |