提交 0cd74d94 编写于 作者: J Jared Parsons

Visual Studio Code Tasks

This changes our .gitignore to consider .vscode as well as adding in an
initial tasks.json file for consideration. Still fairly new to Visual
Studio Code but been using this tasks.json file locally for a bit now
and have found it fairly productive
上级 22e24f64
......@@ -186,9 +186,6 @@ $RECYCLE.BIN/
# Mac desktop service store files
.DS_Store
# Visual Studio Code
.vscode/
# JetBrains Rider
.idea/
......
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "./build.cmd",
"type": "shell",
"args": [
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "build fast",
"command": "./build.cmd -skipAnalyzers",
"type": "shell",
"args": [
],
"problemMatcher": "$msCompile",
"group": "build"
}
]
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册