nuget bump and userSecrets tasks and

query update for event
This commit is contained in:
2023-03-17 09:52:48 -07:00
parent 994556d453
commit 243c8dd888
10 changed files with 97 additions and 9 deletions

26
.vscode/tasks.json vendored
View File

@ -167,6 +167,32 @@
"endsPattern": "^.*Application started.*"
}
}
},
{
"label": "userSecretsInit",
"command": "dotnet",
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/Server/OI.Metrology.Server.csproj",
"init"
],
"problemMatcher": "$msCompile"
},
{
"label": "userSecretsSet",
"command": "dotnet",
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/Server/OI.Metrology.Server.csproj",
"set",
"asdf",
"123"
],
"problemMatcher": "$msCompile"
}
]
}