Files
usb-6009/National-Instruments-DAQ-MX/.vscode/tasks.json

64 lines
1.3 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--configuration",
"Release",
"--framework",
"net48",
"--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"
},
{
"label": "Push Package",
"command": "dotnet",
"type": "process",
"args": [
"nuget",
"push",
"bin/Release/Infineon.Mesa.National.Instruments.DAQ.MX.4.8.0.asdf.nupkg",
"--api-key",
"asdf",
"--source",
"https://api.nuget.org/v3/index.json"
],
"problemMatcher": "$msCompile"
},
{
"label": "Build Self",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--runtime",
"win-x64",
"--self-contained"
],
"problemMatcher": "$msCompile"
},
]
}