正如我在文档中看到的那样运行我的代码后
var creds = new Nexmo.Api.Request.Credentials
{
ApiKey = "xxxxxx",
ApiSecret = "xxxxxxxxx"
};
//this var Im getting the error
var results = SMS.Send(new SMS.SMSRequest
{
from = "CLient",
to = "639xxxxxxx",
text = "this is a test"
}, creds);
这是错误说的
System.IO.FileNotFoundException:“无法加载文件或程序集“Microsoft.Extensions.Configuration.Abstractions,Version=1.1.2.0,Culture=neutral,PublicKeyToken=adb9793829ddae60”或其依赖项之一。该系统找不到指定的文件。'
叮当猫咪