ide configuration changes, add postgre to compose Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/src/Internship.Api/Internship.Api.csproj",
|
|
"/property:GenerateFullPaths=true",
|
|
"/consoleloggerparameters:NoSummary"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "publish",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/src/Internship.Api/Internship.Api.csproj",
|
|
"/property:GenerateFullPaths=true",
|
|
"/consoleloggerparameters:NoSummary"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "watch",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"watch",
|
|
"run",
|
|
"${workspaceFolder}/src/Internship.Api/Internship.Api.csproj",
|
|
"/property:GenerateFullPaths=true",
|
|
"/consoleloggerparameters:NoSummary"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "up",
|
|
"type": "shell",
|
|
"command": "docker-compose",
|
|
"args": [
|
|
"-f",
|
|
".docker/docker-compose.yaml",
|
|
"up",
|
|
"--build"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "dotnet restore",
|
|
"type": "shell",
|
|
"command": "dotnet",
|
|
"args": [
|
|
"restore"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
]
|
|
} |