Last active
September 29, 2016 15:41
-
-
Save reline/c34f87a876d25567555a9c65a5db6cf5 to your computer and use it in GitHub Desktop.
Sublime workspace for Visual Studio project
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
Show hidden characters
{ | |
"folders": | |
[ | |
{ | |
"path": ".", | |
"folder_exclude_patterns": [".svn", "._d", ".metadata", ".settings", ".git", "*Debug"], | |
"file_exclude_patterns": ["*.pyc", "*.pyo", ".project"] | |
} | |
], | |
"build_systems": | |
[ | |
{ | |
"name": "build", | |
"working_dir": "$project_path", | |
"shell_cmd": "cmd /C $project_path\\sublime-build.bat" | |
} | |
] | |
} |
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
@echo off | |
FOR %%i IN (*.sln*) DO ( | |
set file=%%i | |
) | |
set file=%file:~0,-4% | |
del %file%\Debug /Q | |
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe %file%\%file%.vcxproj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment