how to publish bot framework c# code to windows server 2012 r2?

Deadly 提交于 2019-12-24 07:58:13

问题


I need to publish bot framework c# code to windows server 2012 r2 but what do I set "Server" , "Site name" , and Destination URL to?


回答1:


Deploying a bot to IIS is the same as deploying any website.

There's a nice walkthrough of installing Web Deploy on Windows Server 2012 R2 here: http://www.developerhandbook.com/visual-studio/publish-website-to-iis-using-web-deploy/ and another one here: http://www.sherweb.com/blog/how-to-install-webdeploy-on-windows-server-2012/

Once Web Deploy is installed and configured, you can import the deployment profile into visual studio and the server, sitename and destination url will be populated correctly.

Server=YourServerName
SiteName=YourBotWebSiteName
DestinationUrl=WebDeploymentUrl


来源:https://stackoverflow.com/questions/44234788/how-to-publish-bot-framework-c-sharp-code-to-windows-server-2012-r2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!