From 10aa72c2dd5c6e86ccbf48bc13ec9c074d6c247d Mon Sep 17 00:00:00 2001 From: Maximilian Wallinger Date: Thu, 8 Jun 2023 13:18:29 +0200 Subject: [PATCH] Creation of .vscode files launch.json & tasks.json --- templates/BasicConsole/.vscode/launch.json | 13 +++++++++++++ templates/BasicConsole/.vscode/tasks.json | 12 ++++++++++++ templates/BasicVibeServer/.vscode/launch.json | 13 +++++++++++++ templates/BasicVibeServer/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyConsole/.vscode/launch.json | 13 +++++++++++++ templates/EmptyConsole/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyDiamondWebApi/.vscode/launch.json | 13 +++++++++++++ templates/EmptyDiamondWebApi/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyDiamondWebsite/.vscode/launch.json | 13 +++++++++++++ templates/EmptyDiamondWebsite/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyDlangUI/.vscode/launch.json | 13 +++++++++++++ templates/EmptyDlangUI/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyGTKD/.vscode/launch.json | 13 +++++++++++++ templates/EmptyGTKD/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyLegacyOpenGL_SDL/.vscode/launch.json | 13 +++++++++++++ templates/EmptyLegacyOpenGL_SDL/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyOpenGL_SDL/.vscode/launch.json | 13 +++++++++++++ templates/EmptyOpenGL_SDL/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyVibeServer/.vscode/launch.json | 13 +++++++++++++ templates/EmptyVibeServer/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyWin32/.vscode/launch.json | 13 +++++++++++++ templates/EmptyWin32/.vscode/tasks.json | 12 ++++++++++++ templates/EmptyX11/.vscode/launch.json | 13 +++++++++++++ templates/EmptyX11/.vscode/tasks.json | 12 ++++++++++++ 24 files changed, 300 insertions(+) create mode 100644 templates/BasicConsole/.vscode/launch.json create mode 100644 templates/BasicConsole/.vscode/tasks.json create mode 100644 templates/BasicVibeServer/.vscode/launch.json create mode 100644 templates/BasicVibeServer/.vscode/tasks.json create mode 100644 templates/EmptyConsole/.vscode/launch.json create mode 100644 templates/EmptyConsole/.vscode/tasks.json create mode 100644 templates/EmptyDiamondWebApi/.vscode/launch.json create mode 100644 templates/EmptyDiamondWebApi/.vscode/tasks.json create mode 100644 templates/EmptyDiamondWebsite/.vscode/launch.json create mode 100644 templates/EmptyDiamondWebsite/.vscode/tasks.json create mode 100644 templates/EmptyDlangUI/.vscode/launch.json create mode 100644 templates/EmptyDlangUI/.vscode/tasks.json create mode 100644 templates/EmptyGTKD/.vscode/launch.json create mode 100644 templates/EmptyGTKD/.vscode/tasks.json create mode 100644 templates/EmptyLegacyOpenGL_SDL/.vscode/launch.json create mode 100644 templates/EmptyLegacyOpenGL_SDL/.vscode/tasks.json create mode 100644 templates/EmptyOpenGL_SDL/.vscode/launch.json create mode 100644 templates/EmptyOpenGL_SDL/.vscode/tasks.json create mode 100644 templates/EmptyVibeServer/.vscode/launch.json create mode 100644 templates/EmptyVibeServer/.vscode/tasks.json create mode 100644 templates/EmptyWin32/.vscode/launch.json create mode 100644 templates/EmptyWin32/.vscode/tasks.json create mode 100644 templates/EmptyX11/.vscode/launch.json create mode 100644 templates/EmptyX11/.vscode/tasks.json diff --git a/templates/BasicConsole/.vscode/launch.json b/templates/BasicConsole/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/BasicConsole/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/BasicConsole/.vscode/tasks.json b/templates/BasicConsole/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/BasicConsole/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/BasicVibeServer/.vscode/launch.json b/templates/BasicVibeServer/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/BasicVibeServer/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/BasicVibeServer/.vscode/tasks.json b/templates/BasicVibeServer/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/BasicVibeServer/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyConsole/.vscode/launch.json b/templates/EmptyConsole/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyConsole/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyConsole/.vscode/tasks.json b/templates/EmptyConsole/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyConsole/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDiamondWebApi/.vscode/launch.json b/templates/EmptyDiamondWebApi/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyDiamondWebApi/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDiamondWebApi/.vscode/tasks.json b/templates/EmptyDiamondWebApi/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyDiamondWebApi/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDiamondWebsite/.vscode/launch.json b/templates/EmptyDiamondWebsite/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyDiamondWebsite/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDiamondWebsite/.vscode/tasks.json b/templates/EmptyDiamondWebsite/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyDiamondWebsite/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDlangUI/.vscode/launch.json b/templates/EmptyDlangUI/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyDlangUI/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyDlangUI/.vscode/tasks.json b/templates/EmptyDlangUI/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyDlangUI/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyGTKD/.vscode/launch.json b/templates/EmptyGTKD/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyGTKD/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyGTKD/.vscode/tasks.json b/templates/EmptyGTKD/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyGTKD/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyLegacyOpenGL_SDL/.vscode/launch.json b/templates/EmptyLegacyOpenGL_SDL/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyLegacyOpenGL_SDL/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyLegacyOpenGL_SDL/.vscode/tasks.json b/templates/EmptyLegacyOpenGL_SDL/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyLegacyOpenGL_SDL/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyOpenGL_SDL/.vscode/launch.json b/templates/EmptyOpenGL_SDL/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyOpenGL_SDL/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyOpenGL_SDL/.vscode/tasks.json b/templates/EmptyOpenGL_SDL/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyOpenGL_SDL/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyVibeServer/.vscode/launch.json b/templates/EmptyVibeServer/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyVibeServer/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyVibeServer/.vscode/tasks.json b/templates/EmptyVibeServer/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyVibeServer/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyWin32/.vscode/launch.json b/templates/EmptyWin32/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyWin32/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyWin32/.vscode/tasks.json b/templates/EmptyWin32/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyWin32/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file diff --git a/templates/EmptyX11/.vscode/launch.json b/templates/EmptyX11/.vscode/launch.json new file mode 100644 index 0000000..2b62fc1 --- /dev/null +++ b/templates/EmptyX11/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "code-d", + "request": "launch", + "dubBuild": true, + "name": "Build & Debug DUB project", + "cwd": "${command:dubWorkingDirectory}", + "program": "${command:dubTarget}" + } + ] +} \ No newline at end of file diff --git a/templates/EmptyX11/.vscode/tasks.json b/templates/EmptyX11/.vscode/tasks.json new file mode 100644 index 0000000..678e2fe --- /dev/null +++ b/templates/EmptyX11/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dub", + "args": [ + "build" + ] + } + ] +} \ No newline at end of file