dotnet6.0/sdk-telemetry-optout.patch

19 lines
751 B
Diff
Raw Normal View History

2022-07-05 09:42:07 +03:00
diff --git a/src/Cli/dotnet/Program.cs b/src/Cli/dotnet/Program.cs
2021-02-19 00:48:25 +03:00
index de1ebb9e6..6bbf479de 100644
2022-07-05 09:42:07 +03:00
--- a/src/Cli/dotnet/Program.cs
+++ b/src/Cli/dotnet/Program.cs
2021-02-19 00:48:25 +03:00
@@ -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);
2022-07-05 09:42:07 +03:00
// Capture the current timestamp to calculate the host overhead.