Last active
November 8, 2017 14:33
-
-
Save digitalfun/a64d25b90fdb7155c94a7e6b34fc2dcf to your computer and use it in GitHub Desktop.
Taskfile.bat script: Open project folder with Microsoft Visual Code
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
@REM Taskfile.bat example task for opening a project folder with Visual Code | |
:task-projectX: Open ProjectX folder in code | |
ECHO open ProjectX folder | |
SET taskProjectFolder = "C:\Projects\ProjectX\" | |
CALL code %taskProjectFolder% | |
GOTO :EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment