Skip to content

Commit

Permalink
Create tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Sep 10, 2024
1 parent 71e7c64 commit b9bba37
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Templates/SharePoint-ADFS/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "generate azuredeploy.json",
"type": "shell",
"command": "az",
"args": [
"bicep",
"build",
"--file",
"main.bicep",
"--outfile",
"azuredeploy.json"
],
"group": "build",
"presentation": {
"reveal": "always"
}
}
]
}

0 comments on commit b9bba37

Please sign in to comment.