4 implementations of Enabled
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
53public bool Enabled => telemetry.Enabled;
Telemetry\Telemetry.cs (1)
26public bool Enabled { get; }
dotnet.Tests (2)
CommandTests\MSBuild\FakeTelemetry.cs (1)
12public bool Enabled { get; set; } = true;
FakeRecordEventNameTelemetry.cs (1)
13public bool Enabled { get; set; }
4 references to Enabled
dotnet (4)
Commands\MSBuild\MSBuildLogger.cs (2)
113if (_telemetry != null && _telemetry.Enabled) 244if (telemetry == null || !telemetry.Enabled)
Program.cs (2)
234Console.WriteLine($"Telemetry is: {(TelemetryClient.Enabled ? "Enabled" : "Disabled")}"); 240if (TelemetryClient.Enabled)