Add host-app skeleton: HID device listing with HidSharp

This commit is contained in:
2026-08-24 21:00:27 +02:00
parent 4220b18da0
commit 3cb45d7809
4 changed files with 97 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/host-app/MacroPad.Host/MacroPad.Host.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/host-app/MacroPad.Host/MacroPad.Host.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/host-app/MacroPad.Host/MacroPad.Host.csproj"
],
"problemMatcher": "$msCompile"
}
]
}