从 Azure 门户和 Bot 框架创建机器人有什么区别?
What is the difference between creating a bot from the Azure portal, and from the Bot framework?
我可以看到我可以创建一个机器人服务并将其与直接从 Azure 门户的 Bot Framework 连接吗?据我所知,它创建了一个项目,这与我 Visual Studio.. 中的 C# bot 项目有点不同,然后它为我提供了将它与远程存储库持续集成的方法,这到底是什么以及如何这与在 Studio 中创建项目、在 Bot 框架网站中制作机器人并从 VS 发布它有什么不同?它说它将创建 "some files to start with",但尽管我 select C# 作为一种语言,但我绝对看不到创建基于 C# 的项目..
微软对这个话题的支持非常非常差..
它实际上是一个基于 C# 的项目。请参阅 Debugging C# bots built using the Azure Bot Service on Windows
The C# environment in Azure Bot Service has more in common with
Node.js than a typical C# app because it requires a runtime host, much
like the Node engine. In Azure, the runtime is part of the hosting
environment in the cloud, but you’ll need to replicate that
environment locally on your desktop.
First, you need to set up your environment. You’ll need:
- A local copy of your Azure Bot Service code (see Setting up Continuous Integration )
- The Bot Framework Emulator
- The Azure Functions CLI
- DotNet CLI
and if you want breakpoint debugging in Visual Studio 15:
- Visual Studio 15—the Community Edition will work fine
- The Command Task Runner Visual Studio Extension
这些也是要求:
我可以看到我可以创建一个机器人服务并将其与直接从 Azure 门户的 Bot Framework 连接吗?据我所知,它创建了一个项目,这与我 Visual Studio.. 中的 C# bot 项目有点不同,然后它为我提供了将它与远程存储库持续集成的方法,这到底是什么以及如何这与在 Studio 中创建项目、在 Bot 框架网站中制作机器人并从 VS 发布它有什么不同?它说它将创建 "some files to start with",但尽管我 select C# 作为一种语言,但我绝对看不到创建基于 C# 的项目..
它实际上是一个基于 C# 的项目。请参阅 Debugging C# bots built using the Azure Bot Service on Windows
The C# environment in Azure Bot Service has more in common with Node.js than a typical C# app because it requires a runtime host, much like the Node engine. In Azure, the runtime is part of the hosting environment in the cloud, but you’ll need to replicate that environment locally on your desktop.
First, you need to set up your environment. You’ll need:
- A local copy of your Azure Bot Service code (see Setting up Continuous Integration )
- The Bot Framework Emulator
- The Azure Functions CLI
- DotNet CLI
and if you want breakpoint debugging in Visual Studio 15:
- Visual Studio 15—the Community Edition will work fine
- The Command Task Runner Visual Studio Extension
这些也是要求: