National-Instruments-DAQ-MX

This commit is contained in:
2025-08-18 10:52:16 -07:00
parent ebbc16ee6a
commit 4a3bf4073e
24 changed files with 1616 additions and 95 deletions

View File

@ -0,0 +1,35 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--configuration",
"Release",
"--runtime",
"win-x64"
],
"problemMatcher": "$msCompile"
},
{
"label": "Run",
"command": "bin/Release/net48/win-x64/National-Instruments-DAQ-MX.exe",
"dependsOn": "Build",
"type": "process",
"args": [
"ai0",
"ai1",
"ai2",
"ai3",
"ai4",
"ai5",
"ai6",
"ai7"
],
"problemMatcher": "$msCompile"
}
]
}