初始化工程,调整UI隐藏
This commit is contained in:
13
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/launch.json
vendored
Normal file
13
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/launch.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
3
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/settings.json
vendored
Normal file
3
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"dotnet.preferCSharpExtension": true
|
||||
}
|
||||
26
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/tasks.json
vendored
Normal file
26
WIN10_WinISP_SrcCode_For_MOKA_20250416_1/.vscode/tasks.json
vendored
Normal 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": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user