Skip to content

Instantly share code, notes, and snippets.

@cs-qyzhang
Created May 24, 2022 12:22
Show Gist options
  • Select an option

  • Save cs-qyzhang/7f2707b2442c22ad0e1a47c37fd342b6 to your computer and use it in GitHub Desktop.

Select an option

Save cs-qyzhang/7f2707b2442c22ad0e1a47c37fd342b6 to your computer and use it in GitHub Desktop.
Integrate Visual Studio Powershell in Visual Studio Code, see https://developercommunity.visualstudio.com/t/x64-developer-powershell-for-vs-2019/943058
{
"terminal.integrated.profiles.windows": {
"Visual Studio PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": [
"-noe",
"-c",
"&{Import-Module 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll';Enter-VsDevShell 2eff9869 -DevCmdArguments '-arch=x64 -no_logo' -StartInPath ${workspaceFolder}}"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment