Created
May 24, 2022 12:22
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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