Last active
July 31, 2018 07:22
-
-
Save fadhly-permata/e2486bbd4fde275ca008db9359db6a65 to your computer and use it in GitHub Desktop.
VSCode vs MSBuild
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
// | |
// STEPS: | |
// 1. Create Environment Path | |
// e.g: C:\Program Files (x86)\MSBuild\14.0\Bin\ | |
// 2. Write below lines into task.json file | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "ASP Compiler - BUILD", | |
"type": "shell", | |
"command": "msbuild.exe", | |
"args": [ | |
"/property:GenerateFullPaths=true", | |
"/t:build" | |
], | |
"problemMatcher": [] | |
}, | |
{ | |
"label": "ASP Compiler - REBUILD", | |
"type": "shell", | |
"command": "msbuild.exe", | |
"args": [ | |
"/property:GenerateFullPaths=true", | |
"/t:rebuild" | |
], | |
"problemMatcher": [] | |
}, | |
{ | |
"label": "ASP Compiler - CLEAN", | |
"type": "shell", | |
"command": "msbuild.exe", | |
"args": [ | |
"/property:GenerateFullPaths=true", | |
"/t:rebuild" | |
], | |
"problemMatcher": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment