添加测试

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",
"configurations": [
{
"name": "Python 调试程序",
"name": "Python 调试 main",
"type": "debugpy",
"request": "launch",
"program": "src/debug.py",
"console": "integratedTerminal"
},
{
"name": "Python 调试 hook",
"type": "debugpy",
"request": "launch",
"program": "src/hook.pyw",
"console": "integratedTerminal"
},
{
"command": "make debug",
"name": "打包并在虚拟机中运行",

View File

@ -1,5 +1,8 @@
{
"yaml.schemas": {
"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": {
"icon": [
{
"name": "CMD",
"command": "cmd",
"args": "",
"icon": "X:/Windows/system32/cmd.exe"
}
],
"icon": {
"name": "CMD",
"command": "cmd",
"icon": "X:/Windows/system32/cmd.exe"
},
"path": [
"X:/Windows/system32/cli"
]
},
"reg": [
"1.reg"
],
"keywords": [
"cli",
"PEinjector"

View File