Last active
November 21, 2022 08:14
-
-
Save lawrence-laz/db85fe077022d8eda9e53e39cab02a96 to your computer and use it in GitHub Desktop.
Open terminal or file explorer in solution folder for Visual Studio.
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
# Open command prompt in the current solution's folder. | |
# Keyboard shortcut: Alt, T, M. | |
# Visual Studio > Tools > External Tools... | |
Title: Co&mmand Prompt | |
Command: cmd.exe | |
Arguments: | |
Initial directory: $(SolutionDir) | |
Close on exit: ✔ |
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
# Open git bash in the current solution's folder. | |
# Keyboard shortcut: Alt, T, B. | |
# Visual Studio > Tools > External Tools... | |
Title: Git &Bash Here | |
Command: C:\Program Files\Git\git-bash.exe | |
Arguments: --login -i | |
Initial directory: $(SolutionDir) |
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
# Open file explorer in the current solution's folder. | |
# Keyboard shortcut: Alt, T, F. | |
# Visual Studio > Tools > External Tools... | |
Title: Open &File Explorer | |
Command: explorer.exe | |
Arguments: $(SolutionDir) |
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
# Open power shell in the current solution's folder. | |
# Keyboard shortcut: Alt, T, P. | |
# Visual Studio > Tools > External Tools... | |
Title: &Power Shell Here | |
Command: cmd.exe | |
Arguments: /C start "" "pwsh.exe" -nologo -w maximize | |
Initial directory: $(SolutionDir) | |
Close on exit: ✔ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment