National-Instruments-DAQ-MX
This commit is contained in:
1
National-Instruments-DAQ-MX/.vscode/format-report.json
vendored
Normal file
1
National-Instruments-DAQ-MX/.vscode/format-report.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
[]
|
||||
5
National-Instruments-DAQ-MX/.vscode/settings.json
vendored
Normal file
5
National-Instruments-DAQ-MX/.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"[markdown]": {
|
||||
"editor.wordWrap": "off"
|
||||
}
|
||||
}
|
||||
64
National-Instruments-DAQ-MX/.vscode/tasks.json
vendored
Normal file
64
National-Instruments-DAQ-MX/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user