2 writes to TelemetryOptOut
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
36options.TelemetryOptOut = bool.TryParse(configuration["ASPIRE_DASHBOARD_TELEMETRY_OPTOUT"], out var telemetryOptOut)
Aspire.Hosting.Tests (1)
Dashboard\DashboardLifecycleHookTests.cs (1)
127TelemetryOptOut = telemetryEnabled,
2 references to TelemetryOptOut
Aspire.Hosting (1)
Dashboard\DashboardLifecycleHook.cs (1)
342if (options.TelemetryOptOut is { } optOutValue)
Aspire.Hosting.Tests (1)
Dashboard\DashboardOptionsTests.cs (1)
32Assert.Equal(expectedValue, dashboardOptions.TelemetryOptOut);