35 lines
641 B
JSON
35 lines
641 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
} |