From b9bba372874d82302f6b1d55e2a69acb73a1e81d Mon Sep 17 00:00:00 2001 From: Yvan Duhamel Date: Tue, 10 Sep 2024 16:53:52 +0200 Subject: [PATCH] Create tasks.json --- Templates/SharePoint-ADFS/.vscode/tasks.json | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Templates/SharePoint-ADFS/.vscode/tasks.json diff --git a/Templates/SharePoint-ADFS/.vscode/tasks.json b/Templates/SharePoint-ADFS/.vscode/tasks.json new file mode 100644 index 00000000..ce7975f6 --- /dev/null +++ b/Templates/SharePoint-ADFS/.vscode/tasks.json @@ -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" + } + } + ] +} \ No newline at end of file