Spotify.NET/.vscode/tasks.json

18 lines
396 B
JSON
Raw Normal View History

2020-03-09 19:48:14 +00:00
{
"version": "2.0.0",
"tasks": [
{
2020-05-22 11:23:25 +01:00
"label": "Example.ASP-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
2020-05-22 11:23:25 +01:00
"${workspaceFolder}/SpotifyAPI.Web.Examples/Example.ASP/Example.ASP.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
2020-05-22 11:23:25 +01:00
}
]
}