提交 6d7fd8c2 创建 作者: 305350171@qq.com's avatar 305350171@qq.com

提交作业

上级 33b1b1d4
...@@ -15,7 +15,12 @@ ...@@ -15,7 +15,12 @@
{ {
"label": "测试(test)", "label": "测试(test)",
"type": "shell", "type": "shell",
"command": "python3 ${workspaceFolder}/test.py", "windows": {
"command": "python test.py"
},
"linux": {
"command": "python3 test.py"
},
"args": [], "args": [],
"group": "build", "group": "build",
"presentation": { "presentation": {
...@@ -37,7 +42,12 @@ ...@@ -37,7 +42,12 @@
{ {
"label": "运行(Run)", "label": "运行(Run)",
"type": "shell", "type": "shell",
"command": "./app.exe", "windows": {
"command": "app.exe"
},
"linux": {
"command": "./app.exe"
},
"args": [], "args": [],
"group": "build", "group": "build",
"presentation": { "presentation": {
...@@ -48,7 +58,12 @@ ...@@ -48,7 +58,12 @@
{ {
"label": "提交作业", "label": "提交作业",
"type": "shell", "type": "shell",
"command": "python3 customgitpush.py", "windows": {
"command": "python customgitpush.py"
},
"linux": {
"command": "python3 customgitpush.py"
},
"args": [], "args": [],
"group": "build", "group": "build",
"presentation": { "presentation": {
...@@ -56,6 +71,5 @@ ...@@ -56,6 +71,5 @@
}, },
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
} }
] ]
} }
\ No newline at end of file
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论