isn/.vscode/tasks.json

90 lines
2.5 KiB
JSON

4 years ago
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
1 year ago
"/p:Configuration=Debug",
4 years ago
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
1 year ago
"problemMatcher": "$msCompile",
"group": "build"
4 years ago
},
{
1 year ago
"label": "db-upgrade",
4 years ago
"command": "dotnet",
"type": "process",
"args": [
1 year ago
"ef",
"database",
"update"
],
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/src/isnd",
"env": {
"ASPNETCORE_ENV": "Development"
}
1 year ago
},
"dependsOn":["build"],
"group": "test"
1 year ago
},
4 years ago
{
1 year ago
"label": "publish",
4 years ago
"command": "dotnet",
"type": "process",
"args": [
1 year ago
"publish",
"/p:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"/p:TargetFramework=netcoreapp2.1",
"/p:RuntimeIdentifier=linux-x64",
"/p:PublishDir=${workspaceFolder}/artifacts"
],
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}"
1 year ago
},
"group": "none"
1 year ago
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"options": {
"env": {
6 months ago
"ASPNETCORE_ENVIRONMENT": "Development"
1 year ago
}
},
"args": [
"test",
"/property:GenerateFullPaths=true",
"--logger:xunit"
],
"problemMatcher": "$msCompile",
6 months ago
"dependsOn": [ "build"],
1 year ago
"group": "test"
1 year ago
},
4 years ago
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
1 year ago
"bin/Debug/netcoreapp2.1/isnd.dll",
"/property:GenerateFullPaths=true",
"/restore"
4 years ago
],
"options": {
"env": {
1 year ago
"ASPNETCORE_ENVIRONMENT": "Development"
4 years ago
}
},
1 year ago
"problemMatcher": "$msCompile",
"group": "test"
4 years ago
}
]
}