Skip to content

Instantly share code, notes, and snippets.

@cppshane
Last active February 18, 2022 01:18
Show Gist options
  • Save cppshane/94e289189db47e03f59c26e83b887d05 to your computer and use it in GitHub Desktop.
Save cppshane/94e289189db47e03f59c26e83b887d05 to your computer and use it in GitHub Desktop.
VS Code .NET API Tasks Configuration
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/example-api.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment