From 5824514b0e21cc8859c78c88831b69c4dafb8bc5 Mon Sep 17 00:00:00 2001 From: Robert Hargreaves Date: Tue, 25 Jun 2024 00:01:23 +0100 Subject: [PATCH] Add C++ extension to Dev Container --- .devcontainer/devcontainer.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index bd39c3a..11e8d32 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,6 +5,13 @@ "build": { "context": "..", "dockerfile": "../Dockerfile" + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-vscode.cpptools" + ] + } } // Features to add to the dev container. More info: https://containers.dev/features. // "features": {},