Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试编译使用具有多目标 (netstandard2.0和xamarin.iOS) 的 C# 7 元组的代码时,我收到以下错误:
netstandard2.0
xamarin.iOS
在多个引用的程序集中声明了预定义类型“System.ValueTuple`2”
它可能已作为来自另一个包的引用自动添加。只需删除该 NuGet 包即可解决冲突。
uninstall-package System.ValueTuple是包管理器控制台的命令。
uninstall-package System.ValueTuple
我不知道冲突发生在哪些程序集中。但是,我意识到我自己没有添加ValueTuplenuget 包,所以我明确地做了并且错误消失了。
ValueTuple