We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In: https://github.com/MissionMarsFourthHorizon/operation-max/blob/master/CSharp/exercise7-HandOffToHuman.md
When in "Agent" mode, you cannot type "resume" to disconnect as expected.
This seems to be because the scoreables are registered out of order in Application_Start
builder.Register(c => new RouterScorable(c.Resolve<IBotData>(), c.Resolve<ConversationReference>(), c.Resolve<Provider>())) .As<IScorable<IActivity, double>>().InstancePerLifetimeScope(); builder.Register(c => new CommandScorable(c.Resolve<IBotData>(), c.Resolve<ConversationReference>(), c.Resolve<Provider>())) .As<IScorable<IActivity, double>>().InstancePerLifetimeScope();
should be
builder.Register(c => new CommandScorable(c.Resolve<IBotData>(), c.Resolve<ConversationReference>(), c.Resolve<Provider>())) .As<IScorable<IActivity, double>>().InstancePerLifetimeScope(); builder.Register(c => new RouterScorable(c.Resolve<IBotData>(), c.Resolve<ConversationReference>(), c.Resolve<Provider>())) .As<IScorable<IActivity, double>>().InstancePerLifetimeScope();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In: https://github.com/MissionMarsFourthHorizon/operation-max/blob/master/CSharp/exercise7-HandOffToHuman.md
When in "Agent" mode, you cannot type "resume" to disconnect as expected.
This seems to be because the scoreables are registered out of order in Application_Start
should be
The text was updated successfully, but these errors were encountered: