From 478b6d37dc2f74bf57593aec533912913627b3d0 Mon Sep 17 00:00:00 2001 From: Aleksandar Ivanov <74899441+aleks-ivanov@users.noreply.github.com> Date: Thu, 5 Aug 2021 15:43:36 +0300 Subject: [PATCH 1/2] Create Codespace configuration (#2) --- .devcontainer/devcontainer.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..61dc8e9096 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,32 @@ +{ + "name": " 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", + // JS/TS specific + "dbaeumer.vscode-eslint", + "ms-vscode.vscode-typescript-next", + "ecmel.vscode-html-css", + ], + "postCreateCommand": "" +} + +// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) \ No newline at end of file From 95a1d811c9a3f3128f993f3c9b403e28a6edc105 Mon Sep 17 00:00:00 2001 From: Aleksandar Ivanov <74899441+aleks-ivanov@users.noreply.github.com> Date: Thu, 5 Aug 2021 17:15:14 +0300 Subject: [PATCH 2/2] Update devcontainer.json --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 61dc8e9096..33849d9186 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -26,7 +26,7 @@ "ms-vscode.vscode-typescript-next", "ecmel.vscode-html-css", ], - "postCreateCommand": "" + "postCreateCommand": "src/dev.sh layout && src/dev.sh build" } -// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) \ No newline at end of file +// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)