Created
May 25, 2023 19:05
-
-
Save russellds/dedd01acec6933eebe3daf52fe0b16d2 to your computer and use it in GitHub Desktop.
VS Code Setup for Bicep
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Remove Telemetry", | |
"type": "shell", | |
"command": "${workspaceFolder}/.vscode/scripts/RemoveTelemetry.ps1", | |
"args": [ | |
"-WorkspacePath", | |
"${workspaceFolder}" | |
], | |
"problemMatcher": [], | |
"group": { | |
"kind": "build", | |
"isDefault": false | |
} | |
} | |
], | |
"inputs": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment