From 326c55fb413a239828e3438631349e49d0b99590 Mon Sep 17 00:00:00 2001 From: Patrick Kurmann Date: Fri, 26 Apr 2024 07:52:30 +0200 Subject: [PATCH] Add devcontainer.json file with customizations for VS Code extensions --- .../entities-repo/.devcontainer/devcontainer.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/entities-repo/.devcontainer/devcontainer.json diff --git a/templates/entities-repo/.devcontainer/devcontainer.json b/templates/entities-repo/.devcontainer/devcontainer.json new file mode 100644 index 0000000..cacce45 --- /dev/null +++ b/templates/entities-repo/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot", + "GitHub.vscode-github-actions", + "ms-dotnettools.csdevkit" + ] + } + } +} \ No newline at end of file