Added Snyk API console app

This commit is contained in:
Jurjen Ladenius
2022-08-26 13:44:50 +02:00
parent c00d00acfb
commit 91b4dde5f3
23 changed files with 727 additions and 0 deletions

41
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/ConsoleApps/AzureRestApi/AzureRestApi/AzureRestApi.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/ConsoleApps/AzureRestApi/AzureRestApi/AzureRestApi.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/ConsoleApps/AzureRestApi/AzureRestApi/AzureRestApi.csproj"
],
"problemMatcher": "$msCompile"
}
]
}