mirror of
https://github.com/0ptera/Logistic-Train-Network.git
synced 2025-09-06 12:15:05 +00:00
update project settings
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
2
.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.ffs_db
|
||||
.vscode/tasks.json
|
||||
|
11
.vscode/settings.json
vendored
11
.vscode/settings.json
vendored
@@ -6,6 +6,13 @@
|
||||
"spellright.documentTypes": [
|
||||
"markdown",
|
||||
"latex",
|
||||
"plaintext"
|
||||
]
|
||||
"plaintext",
|
||||
"properties",
|
||||
"lua"
|
||||
],
|
||||
"spellright.parserByClass": {
|
||||
"properties": {
|
||||
"parser": "plain"
|
||||
}
|
||||
}
|
||||
}
|
38
.vscode/tasks.json
vendored
Normal file
38
.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user