初始化工程,调整UI隐藏

This commit is contained in:
chenjiangqun
2026-04-13 09:53:21 +08:00
parent 8783bf1f60
commit 0e8d1aecde
32 changed files with 4002 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"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

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

View File

@@ -0,0 +1,26 @@
{
"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": []
}
]
}