• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

microsoft / botbuilder-dotnet / 380327

08 Dec 2023 07:19PM UTC coverage: 78.458% (+0.006%) from 78.452%
380327

Pull #6711

CI-PR build

web-flow
Merge a07471e77 into 979413cd7
Pull Request #6711: Add obsolete warning to Orchestrator classes

26135 of 33311 relevant lines covered (78.46%)

0.78 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/libraries/Microsoft.Bot.Builder.AI.Orchestrator/OrchestratorBotComponent.cs
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
// Licensed under the MIT License.
3

4
using System;
5
using Microsoft.Bot.Builder.Dialogs.Declarative;
6
using Microsoft.Extensions.Configuration;
7
using Microsoft.Extensions.DependencyInjection;
8
using Microsoft.Extensions.Logging;
9

10
namespace Microsoft.Bot.Builder.AI.Orchestrator
11
{
12
    /// <summary>
13
    /// Define component assets for Orchestrator.
14
    /// </summary>
15
    [Obsolete("The Bot Framework Orchestrator will be deprecated in the next version of the Bot Framework SDK.")]
16
    public class OrchestratorBotComponent : BotComponent
17
    {
18
        /// <inheritdoc/>
19
        public override void ConfigureServices(IServiceCollection services, IConfiguration configuration)
20
        {
21
            services.AddSingleton<DeclarativeType>(
1✔
22
                sp => new DeclarativeType<OrchestratorRecognizer>(OrchestratorRecognizer.Kind));
×
23
        }
1✔
24
    }
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc