From 653cd413fc4ed31e94b747a501444194c7b049b7 Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Thu, 3 Mar 2022 14:15:21 +0900 Subject: [PATCH] Add DOTNET_CLI_TELEMETRY_OPTOUT environment variable. --- .devcontainer/devcontainer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3823ec2..574e7f8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,7 +14,8 @@ }, "remoteEnv": { - "LOCAL_WORKSPACE_FOLDER": "/workspaces/${localWorkspaceFolderBasename}" + "LOCAL_WORKSPACE_FOLDER": "/workspaces/${localWorkspaceFolderBasename}", + "DOTNET_CLI_TELEMETRY_OPTOUT": "1" }, // For SELinux enabled systems (ie. Fedora) we need to mount the volume with the :Z option @@ -22,7 +23,7 @@ "workspaceMount": "", "runArgs": [ "--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z", - "--volume=${localWorkspaceFolder}/_gamedirref:/workspaces/stardew-valley-game:z" + "--volume=${localWorkspaceFolder}/_gamedirref:/workspaces/stardew-valley-game:z", ], // Set *default* container specific settings.json values on container create.