Spotify.NET/.vscode/tasks.json
2020-05-22 12:23:25 +02:00

18 lines
396 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Example.ASP-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/SpotifyAPI.Web.Examples/Example.ASP/Example.ASP.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}