From a7fc824ea08e6c6e6e9195ea8aa6c00c9bdf41d1 Mon Sep 17 00:00:00 2001 From: "A.suzuki" Date: Fri, 10 Oct 2025 08:18:26 +0000 Subject: [PATCH 1/2] Update devcontainer.json. --- .devcontainer/devcontainer.json | 28 ++++++++++++++++++++-------- .vscode/extensions.json | 10 ---------- 2 files changed, 20 insertions(+), 18 deletions(-) delete mode 100644 .vscode/extensions.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3af6f6e..d5b7606 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,11 +1,23 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/dotnet { - "name": "C# (.NET)", - "dockerComposeFile": [ - "compose.develop.yaml" - ], - "service": "dev", - "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", - "remoteUser": "vscode" -} \ No newline at end of file + "name": "C# (.NET)", + "dockerComposeFile": [ + "compose.develop.yaml" + ], + "service": "dev", + "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", + "remoteUser": "vscode", + "customizations": { + "vscode": { + "extensions": [ + "EditorConfig.EditorConfig", + "streetsidesoftware.code-spell-checker", + "DavidAnson.vscode-markdownlint", + "ms-dotnettools.csdevkit", + "jeremycaron.csharp-organize-usings", + "aliasadidev.nugetpackagemanagergui" + ] + } + } +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 54d0460..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "recommendations": [ - "EditorConfig.EditorConfig", - "streetsidesoftware.code-spell-checker", - "DavidAnson.vscode-markdownlint", - "ms-dotnettools.csdevkit", - "jeremycaron.csharp-organize-usings", - "aliasadidev.nugetpackagemanagergui", - ] -} \ No newline at end of file From 2e58fc03631ce5c1ac1ae8ea9f0cdff49c684ce6 Mon Sep 17 00:00:00 2001 From: "A.suzuki" Date: Fri, 10 Oct 2025 08:18:31 +0000 Subject: [PATCH 2/2] Update README.md. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 178ce7e..724c8b2 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ ## What is the purpose of this repository? -This repository is the author's personal playground for learning .NET and experimenting with its features. +This repository is just my personal playground for learning and experimenting with .NET programming in C#. -The content here may be useful for other developers who are facing similar issues. +The content here might actually be helpful to other developers facing similar issues. -However, please note that the code presented here is based solely on my personal understanding and may contain errors or inaccuracies. +However, please keep in mind that this code is based solely on my own perspective and probably has lots of inaccurate or questionable parts!