Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShreyas Jejurkar <shreyasjejurkar123@live.com>2022-01-02 17:39:22 +0300
committerGitHub <noreply@github.com>2022-01-02 17:39:22 +0300
commitc85baf8db0c72ae8e68643029d514b2e737c9fae (patch)
tree9af112445ff04b83fcd9b0bc2c703901cc31697c /.devcontainer
parent2a2f285430d53a4b5628b7fa1c9d5843f1030ff1 (diff)
chore : Remove unwanted `using` statement (#39176)
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json77
1 files changed, 39 insertions, 38 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 712f0464a7..dadc22109a 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,42 +1,43 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/dotnet
{
- "name": "C# (.NET)",
- "build": {
- "dockerfile": "Dockerfile",
- "args": {
- // The VARIANT here must align with a dotnet container image that
- // is publicly available on https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list.
- // We'll default to `latest` as the default. Generally, the .NET version that is baked
- // into the image by default doesn't matter since we end up installing our own
- // local version and using that by default in the container environment.
- "VARIANT": "latest",
- // Options
- "INSTALL_NODE": "true",
- "NODE_VERSION": "lts/*"
- }
- },
- // Add the IDs of extensions you want installed when the container is created.
- "extensions": [
- "ms-dotnettools.csharp",
- "EditorConfig.EditorConfig",
- "k--kato.docomment"
- ],
- "settings": {
- // Loading projects on demand is better for larger codebases
- "omnisharp.enableMsBuildLoadProjectsOnDemand": true,
- "omnisharp.enableRoslynAnalyzers": true,
- "omnisharp.enableEditorConfigSupport": true,
- },
- // Use 'postCreateCommand' to run commands after the container is created.
- "onCreateCommand": "bash -i ${containerWorkspaceFolder}/.devcontainer/scripts/container-creation.sh",
- // Add the locally installed dotnet to the path to ensure that it is activated
- // This is needed so that things like the C# extension can resolve the correct SDK version
- "remoteEnv": {
- "PATH": "${containerWorkspaceFolder}/.dotnet:${containerEnv:PATH}",
- "DOTNET_MULTILEVEL_LOOKUP": "0",
- "TARGET": "net7.0"
- },
- // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
- "remoteUser": "vscode"
+ "name": "C# (.NET)",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "args": {
+ // The VARIANT here must align with a dotnet container image that
+ // is publicly available on https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list.
+ // We'll default to `latest` as the default. Generally, the .NET version that is baked
+ // into the image by default doesn't matter since we end up installing our own
+ // local version and using that by default in the container environment.
+ "VARIANT": "latest",
+ // Options
+ "INSTALL_NODE": "true",
+ "NODE_VERSION": "lts/*"
+ }
+ },
+ // Add the IDs of extensions you want installed when the container is created.
+ "extensions": [
+ "ms-dotnettools.csharp",
+ "EditorConfig.EditorConfig",
+ "k--kato.docomment"
+ ],
+ "settings": {
+ // Loading projects on demand is better for larger codebases
+ "omnisharp.enableMsBuildLoadProjectsOnDemand": true,
+ "omnisharp.enableRoslynAnalyzers": true,
+ "omnisharp.enableEditorConfigSupport": true,
+ "omnisharp.enableImportCompletion": true,
+ },
+ // Use 'postCreateCommand' to run commands after the container is created.
+ "onCreateCommand": "bash -i ${containerWorkspaceFolder}/.devcontainer/scripts/container-creation.sh",
+ // Add the locally installed dotnet to the path to ensure that it is activated
+ // This is needed so that things like the C# extension can resolve the correct SDK version
+ "remoteEnv": {
+ "PATH": "${containerWorkspaceFolder}/.dotnet:${containerEnv:PATH}",
+ "DOTNET_MULTILEVEL_LOOKUP": "0",
+ "TARGET": "net7.0"
+ },
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
+ "remoteUser": "vscode"
}