From 137a2bd049c1d48efd7892531b529ac5c98d13e2 Mon Sep 17 00:00:00 2001 From: Riccardo Rigutini <47950599+richardrigutins@users.noreply.github.com> Date: Fri, 8 Dec 2023 20:07:06 +0000 Subject: [PATCH] Add devcontainer configuration --- .devcontainer/devcontainer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..8783b52 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +{ + "name": ".NET in Codespaces", + "image": "mcr.microsoft.com/dotnet/sdk:8.0", + "features": { + "ghcr.io/devcontainers/features/common-utils:2": {}, + "ghcr.io/devcontainers/features/dotnet:2": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-dotnettools.vscode-dotnet-runtime", + "ms-dotnettools.csdevkit", + "ms-dotnetools.csharp", + "richardrigutins.csharp-shortcuts" + ] + } + }, + "remoteEnv": { + "DOTNET_MULTILEVEL_LOOKUP": "0", + "TARGET": "net8.0" + } +}