C# Microsoft Bot Framework-无法在Emulator中设置BotId

C# Microsoft Bot Framework-无法在Emulator中设置BotId,c#,botframework,C#,Botframework,我在AppSettings下的Web.config文件中有以下行 但是bot没有使用此值,bot框架仿真器将botid显示为“默认bot”。v3仿真器不提供设置botid的功能默认bot'在此处硬编码: Emulator v3或v4 Preview?Emulator v3显示类似“ab4bii416cl4”的Botid,而v4 Preview将GUID显示为Botid。所以两者都不显示正确的BotIdSo您在哪里将“botid”设置为“default bot”?当不使用Azure bot通道注

我在AppSettings下的Web.config文件中有以下行


但是bot没有使用此值,bot框架仿真器将botid显示为“默认bot”。

v3仿真器不提供设置botid的功能默认bot'在此处硬编码:


Emulator v3或v4 Preview?Emulator v3显示类似“ab4bii416cl4”的Botid,而v4 Preview将GUID显示为Botid。所以两者都不显示正确的BotIdSo您在哪里将“botid”设置为“default bot”?当不使用Azure bot通道注册时,它在v3中的默认bot,当使用Azure bot通道注册+ngrok时,它与我上面提到的类似。最近,当我尝试使用直连访问Bot时,我发现BotId是“Bot处理程序”。
export const settingsDefault: Settings = {
  framework: frameworkDefault,
  bots: [
    {
      'botId': 'default-bot',
      'botUrl': 'http://localhost:3978/api/messages',
      'msaAppId': '',
      'msaPassword': '',
      'locale': ''
    }
  ],
  windowState: windowStateDefault,
  users: usersDefault
};