Skip to content

Commit

Permalink
[rel/3.8] Fix breaking change with telemetry (#5050)
Browse files Browse the repository at this point in the history
Co-authored-by: Amaury Levé <[email protected]>
  • Loading branch information
youssef-backport-bot and Evangelink authored Feb 18, 2025
1 parent cc1c3cd commit 51d51a8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ internal TestApplicationBuilder(

internal ITestHostOrchestratorManager TestHostOrchestrator => _testHostBuilder.TestHostOrchestratorManager;

[Obsolete("Remove in v2. Avoid breaking change with the rename of the property. See https://github.com/microsoft/testfx/issues/5015", error: true)]
internal ITestHostOrchestratorManager TestHostControllersManager => _testHostBuilder.TestHostOrchestratorManager;

[Experimental("TPEXP", UrlFormat = "https://aka.ms/testingplatform/diagnostics#{0}")]
public IConfigurationManager Configuration => _testHostBuilder.Configuration;

Expand All @@ -68,6 +71,9 @@ internal TestApplicationBuilder(

internal ITelemetryManager Telemetry => _testHostBuilder.Telemetry;

[Obsolete("Remove in v2. Avoid breaking change with the rename of the property. See https://github.com/microsoft/testfx/issues/5015", error: true)]
internal ITelemetryManager TelemetryManager => _testHostBuilder.Telemetry;

internal IToolsManager Tools => _testHostBuilder.Tools;

public ITestApplicationBuilder RegisterTestFramework(
Expand Down

0 comments on commit 51d51a8

Please sign in to comment.