From ea30e363d58d5af391f9974a61f612aa1875ffcf Mon Sep 17 00:00:00 2001 From: Aleksandar Ivanov <74899441+aleks-ivanov@users.noreply.github.com> Date: Mon, 23 Aug 2021 16:20:09 +0300 Subject: [PATCH] Resolves: Add GitHub Codespaces configuration (#3009) * Create GitHub Codespaces configuration --- .devcontainer/devcontainer.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..a83b208ddb --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,28 @@ +{ + "name": "vstest Codespace", + "image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.9-5.0", + "settings": { + "workbench.colorTheme": "Default Dark+", + "terminal.integrated.defaultProfile.linux": "pwsh" + }, + "extensions": [ + // VS Code specific + "coenraads.bracket-pair-colorizer", + "vscode-icons-team.vscode-icons", + "editorconfig.editorconfig", + // GitHub specific + "eamodio.gitlens", + "cschleiden.vscode-github-actions", + "redhat.vscode-yaml", + "bierner.markdown-preview-github-styles", + "ban.spellright", + // .NET specific + "ms-dotnettools.csharp", + "VisualStudioExptTeam.vscodeintellicode", + "ms-vscode.powershell", + "jmrog.vscode-nuget-package-manager", + ], + "postCreateCommand": "./build.sh" +} + +// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)