update project settings

This commit is contained in:
Optera
2019-03-22 07:27:41 +01:00
parent 30a68e6da6
commit 981cd4c647
4 changed files with 47 additions and 5 deletions

1
.gitattributes vendored
View File

@@ -1,6 +1,5 @@
.gitattributes export-ignore
.gitignore export-ignore
/.git export-ignore
/.git export-ignore
/.github export-ignore
/.vscode export-ignore

2
.gitignore vendored
View File

@@ -1,2 +0,0 @@
*.ffs_db
.vscode/tasks.json

11
.vscode/settings.json vendored
View File

@@ -6,6 +6,13 @@
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext"
]
"plaintext",
"properties",
"lua"
],
"spellright.parserByClass": {
"properties": {
"parser": "plain"
}
}
}

38
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,38 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "mklink",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Unrestricted",
"-NoProfile",
"-File",
"${workspaceFolder}\\..\\makelink.ps1"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "create archive",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Unrestricted",
"-NoProfile",
"-File",
"${workspaceFolder}\\..\\makezip.ps1"
],
"problemMatcher": [],
"group": "build"
}
]
}