chore: stop tracking .vscode/

This commit is contained in:
chenjiangqun
2026-05-07 16:44:55 +08:00
parent 1cbf3c66cb
commit ffa1a94902
3 changed files with 0 additions and 42 deletions

View File

@@ -1,13 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch WinISP (.NET Framework)",
"type": "clr",
"request": "launch",
"program": "${workspaceFolder}/WinISP/bin/Debug/WinISP.exe",
"cwd": "${workspaceFolder}/WinISP",
"preLaunchTask": "build WinISP"
}
]
}

View File

@@ -1,3 +0,0 @@
{
"dotnet.preferCSharpExtension": true
}

View File

@@ -1,26 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build WinISP",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/WinISP/WinISP.csproj"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile"
},
{
"label": "run WinISP exe",
"type": "shell",
"command": "${workspaceFolder}/WinISP/bin/Debug/WinISP.exe",
"dependsOn": "build WinISP",
"problemMatcher": []
}
]
}