From 1d76b3e8a3803a2fb75eadee9efeaeaace6dc299 Mon Sep 17 00:00:00 2001 From: Paulo Date: Wed, 23 Oct 2024 13:59:14 -0300 Subject: [PATCH] Adding devcontainer support --- .devcontainer/devcontainer.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..2185d100 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,15 @@ +{ + "name": "The Algorithms C#", + "image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm", + "customizations": { + "vscode": { + "extensions": [ + "ms-dotnettools.csharp", + "ms-dotnettools.csdevkit", + "nunit.nunit-adapter", + "fluentassertions.fluentassertions" + ] + } + }, + "postCreateCommand": "sudo chown -R $(whoami) /workspaces" +} \ No newline at end of file