我想在我的Luis Web App Bot中使用restsharp package。但是当我添加
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
声明
BasicLuisDialog.cs
并通过控制台中的build.cmd生成程序集,我得到
找不到类型或名称空间名称'RestSharp'
如何在Azure在线代码编辑器中添加程序集引用?
答案 0 :(得分:1)
您可以将以下行:<package id="RestSharp" version="106.3.1" targetFramework="net46" />
添加到packages.config文件中,然后再次从控制台运行build。