From e668058fbcbad49b167ecb4088eb14383bd59853 Mon Sep 17 00:00:00 2001 From: actboy168 Date: Fri, 26 Apr 2024 21:59:16 +0800 Subject: [PATCH] add tasks.vs.json --- .gitignore | 1 + .vs/tasks.vs.json | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .vs/tasks.vs.json diff --git a/.gitignore b/.gitignore index 14dd62cd..96c43a6d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /.cache /.vs/* !/.vs/launch.vs.json +!/.vs/tasks.vs.json /.vscode/ipch/ /.vscode/c_cpp_properties.json /node_modules/ diff --git a/.vs/tasks.vs.json b/.vs/tasks.vs.json new file mode 100644 index 00000000..49172f0e --- /dev/null +++ b/.vs/tasks.vs.json @@ -0,0 +1,23 @@ +{ + "version": "0.2.1", + "tasks": [ + { + "type": "launch", + "taskLabel": "build", + "command": "luamake", + "args": [ + "-notest" + ], + "appliesTo": "/" + }, + { + "type": "launch", + "taskLabel": "test", + "command": "luamake", + "args": [ + "test" + ], + "appliesTo": "/" + } + ] +} \ No newline at end of file