national-instruments-helper

This commit is contained in:
2025-08-18 12:42:27 -07:00
parent 9b61eceb80
commit 5671959051
35 changed files with 1118 additions and 24 deletions

2
.vscode/launch.json vendored
View File

@ -8,7 +8,7 @@
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"preLaunchTask": "Build",
"program": "${workspaceFolder}/bin/Debug/net8.0/win-x64/File-Watcher.dll",
"args": [
"s"

View File

@ -42,6 +42,7 @@
"PDSF",
"pged",
"Phares",
"Pinnable",
"Rijndael",
"Serilog",
"SUBM",

18
.vscode/tasks.json vendored
View File

@ -7,8 +7,6 @@
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/File-Watcher.csproj",
"init"
],
"problemMatcher": "$msCompile"
@ -19,8 +17,6 @@
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/File-Watcher.csproj",
"set",
"_UserSecretsId",
"6516d19d6569"
@ -43,19 +39,16 @@
"problemMatcher": "$msCompile"
},
{
"label": "build",
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/File-Watcher.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"build"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format-Whitespaces",
"label": "Format Whitespaces",
"command": "dotnet",
"type": "process",
"args": [
@ -74,10 +67,7 @@
"win-x64",
"-c",
"Release",
"-p:PublishAot=true",
"${workspaceFolder}/File-Watcher.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"-p:PublishAot=true"
],
"problemMatcher": "$msCompile"
},