From 56ca7195bd1dbe2cf844a3e7fe5728104a0f5994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20Falc=C3=A3o?= <72179636+Paulofalcao2002@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:04:02 -0300 Subject: [PATCH] Add devcontainer support (#485) --- .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