无法为 windows 10 个商店应用开发找到 Windows.IdentityModel

Not able to find Windows.IdentityModel for windows 10 store app development

这个 dll 是否与 windows 商店应用程序不兼容,或者是否有任何其他方法可以实现相同的目的。

我也尝试从 nuget 包中添加它但没有发生,我收到此错误:

"严重性代码说明项目文件行抑制状态 错误包还原失败。回滚 'Solution'."

的包更改

据我所知,您需要安装 Windows Identity Foundation as well as the WIF SDK 然后重新启动应用程序才能使效果生效。

对于 Windows 10 设备,Windows Identity Foundation 不是安装程序,但需要启用 Windows 功能。

  • 从开始菜单进入控制面板
  • 点击程序和功能
  • 选择打开或关闭 Windows 功能
  • 选择 Winodws Identity Framework,点击确定
  • 重启你的机器

一个类似的问题here,可能对您有帮助。正如 Moory 在评论中所说,他通过将以下参考添加到 csproj 文件来解决此问题:: ( .

也请试试。谢谢。