diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:35:03 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:35:03 +0000 |
commit | df303ff896cc75df80deb1e17cc1265ce574f812 (patch) | |
tree | 551246daead1fa0c2e4a17a7e22208b13be88bbb /sdk-telemetry-optout.patch | |
parent | 06fa2099c3f83b26f882afcee6cafeae15eed193 (diff) |
automatic import of dotnet6.0openeuler24.03_LTS
Diffstat (limited to 'sdk-telemetry-optout.patch')
-rw-r--r-- | sdk-telemetry-optout.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sdk-telemetry-optout.patch b/sdk-telemetry-optout.patch new file mode 100644 index 0000000..d6e6464 --- /dev/null +++ b/sdk-telemetry-optout.patch @@ -0,0 +1,18 @@ +diff --git a/src/Cli/dotnet/Program.cs b/src/Cli/dotnet/Program.cs +index de1ebb9e6..6bbf479de 100644 +--- a/src/Cli/dotnet/Program.cs ++++ b/src/Cli/dotnet/Program.cs +@@ -28,6 +28,13 @@ public class Program + + public static int Main(string[] args) + { ++ // opt out of telemetry by default if the env var is unset ++ string telemetryValue = Environment.GetEnvironmentVariable("DOTNET_CLI_TELEMETRY_OPTOUT"); ++ if (String.IsNullOrEmpty(telemetryValue)) ++ { ++ Environment.SetEnvironmentVariable("DOTNET_CLI_TELEMETRY_OPTOUT", "1"); ++ } ++ + DebugHelper.HandleDebugSwitch(ref args); + + // Capture the current timestamp to calculate the host overhead. |