修改launch.json,删除无用参数

This commit is contained in:
李运家 2024-04-16 16:40:29 +08:00
parent 79dd794f72
commit a98dbe65bc
2 changed files with 5 additions and 5 deletions

4
.idea/misc.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="21" project-jdk-type="JavaSDK" />
</project>

6
.vscode/launch.json vendored
View File

@ -7,12 +7,8 @@
"request": "launch", "request": "launch",
"program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}", "program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}",
"args": [], "args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}", "cwd": "${workspaceRoot}",
"environment": [], "preLaunchTask":"build",
"preLaunchTask":"build",
"externalConsole": true,
} }
] ]
} }