添加测试

This commit is contained in:
cxykevin 2024-02-10 12:53:12 +08:00
parent 97a591895c
commit dd2b6410d2
5 changed files with 20 additions and 10 deletions

9
.vscode/launch.json vendored
View File

@ -5,12 +5,19 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Python 调试程序", "name": "Python 调试 main",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "src/debug.py", "program": "src/debug.py",
"console": "integratedTerminal" "console": "integratedTerminal"
}, },
{
"name": "Python 调试 hook",
"type": "debugpy",
"request": "launch",
"program": "src/hook.pyw",
"console": "integratedTerminal"
},
{ {
"command": "make debug", "command": "make debug",
"name": "打包并在虚拟机中运行", "name": "打包并在虚拟机中运行",

View File

@ -1,5 +1,8 @@
{ {
"yaml.schemas": { "yaml.schemas": {
"https://json.schemastore.org/yamllint.json": "file:///c%3A/Users/Administrator/Desktop/PEinjector/package/cli/manifest.yml" "https://json.schemastore.org/yamllint.json": "file:///c%3A/Users/Administrator/Desktop/PEinjector/package/cli/manifest.yml"
} },
"python.analysis.extraPaths": [
"./tool"
]
} }

BIN
package/cli/1.reg Normal file

Binary file not shown.

View File

@ -28,18 +28,18 @@
} }
}, },
"start": { "start": {
"icon": [ "icon": {
{ "name": "CMD",
"name": "CMD", "command": "cmd",
"command": "cmd", "icon": "X:/Windows/system32/cmd.exe"
"args": "", },
"icon": "X:/Windows/system32/cmd.exe"
}
],
"path": [ "path": [
"X:/Windows/system32/cli" "X:/Windows/system32/cli"
] ]
}, },
"reg": [
"1.reg"
],
"keywords": [ "keywords": [
"cli", "cli",
"PEinjector" "PEinjector"

View File