Skip to content

Commit

Permalink
convert template to bicep + all previous improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Sep 26, 2024
1 parent 1a7391e commit 6d5f8d8
Show file tree
Hide file tree
Showing 27 changed files with 2,410 additions and 524 deletions.
5 changes: 5 additions & 0 deletions Templates/DTL-SharePoint-FullConfig/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-azuretools.vscode-bicep"
]
}
8 changes: 0 additions & 8 deletions Templates/DTL-SharePoint-FullConfig/.vscode/settings.json

This file was deleted.

24 changes: 24 additions & 0 deletions Templates/DTL-SharePoint-FullConfig/.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": "silent"
}
}
]
}
Loading

0 comments on commit 6d5f8d8

Please sign in to comment.