Skip to content

Instantly share code, notes, and snippets.

@reline
Last active September 29, 2016 15:41
Show Gist options
  • Save reline/c34f87a876d25567555a9c65a5db6cf5 to your computer and use it in GitHub Desktop.
Save reline/c34f87a876d25567555a9c65a5db6cf5 to your computer and use it in GitHub Desktop.
Sublime workspace for Visual Studio project
{
"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"
}
]
}
@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