Lync SDK 2013 文件在 Skype for Business 2016 中找不到异常
Lync SDK 2013 File not found exception in Skype for Business 2016
我完全不熟悉 Lync SDK。我从这里"getting started"获取了一些信息
https://blog.thoughtstuff.co.uk/2014/08/microsoft-lync-desktop-development-how-to-get-started/
创建新的 windows 表单项目后,我在我的表单上执行了这段代码
public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
LyncClient client = LyncClient.GetClient();
Console.WriteLine(client.State);
}
}
我在 运行 代码之前登录了我的 Skype 桌面应用程序并收到此错误
System.IO.FileNotFoundException: "Could not load file or assembly
"Microsoft.Office.Uc, Version=15.0.4603.1000, Culture=neutral,
PublicKeyToken=token" or one of its dependencies. The system cannot
find the file specified."
我必须在这里解决什么问题?
假设您已经在解决方案资源管理器中添加了对 Microsoft.Office.Uc、select 的引用,并在属性 window 中确保嵌入互操作类型设置为 "False"
我完全不熟悉 Lync SDK。我从这里"getting started"获取了一些信息
https://blog.thoughtstuff.co.uk/2014/08/microsoft-lync-desktop-development-how-to-get-started/
创建新的 windows 表单项目后,我在我的表单上执行了这段代码
public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
LyncClient client = LyncClient.GetClient();
Console.WriteLine(client.State);
}
}
我在 运行 代码之前登录了我的 Skype 桌面应用程序并收到此错误
System.IO.FileNotFoundException: "Could not load file or assembly "Microsoft.Office.Uc, Version=15.0.4603.1000, Culture=neutral, PublicKeyToken=token" or one of its dependencies. The system cannot find the file specified."
我必须在这里解决什么问题?
假设您已经在解决方案资源管理器中添加了对 Microsoft.Office.Uc、select 的引用,并在属性 window 中确保嵌入互操作类型设置为 "False"