Skip to content

Instantly share code, notes, and snippets.

@fadhly-permata
Last active July 31, 2018 07:22
Show Gist options
  • Save fadhly-permata/e2486bbd4fde275ca008db9359db6a65 to your computer and use it in GitHub Desktop.
Save fadhly-permata/e2486bbd4fde275ca008db9359db6a65 to your computer and use it in GitHub Desktop.
VSCode vs MSBuild
{
// 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