命名空间“System.Runtime.CompilerServices”中不存在类型或命名空间名称“ITuple”

今天处理单元测试的时候遇到一个很奇怪的问题,翻出去找了找​,还真找到了。直接整理出来,可以参考使用!非常适合正在整理单元测试的​同行!​

出问题:

<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/">  <Assembly Name="mscorlib" Version="4.0.0.0"/></Fakes>

命名空间“System.Runtime.CompilerServices”中不存在类型或命名空间名称“ITuple”(是否缺少程序集引用?)

解决问题:

<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/">  <Assembly Name="mscorlib" Version="4.0.0.0"/>  <StubGeneration>    <Remove FullName="System.Runtime.CompilerServices.ITuple"/>  </StubGeneration></Fakes>

解决​方案来源:

https://developercommunity.visualstudio.com/content/problem/236081/the-type-or-namespace-name-ituple-does-not-exist-i.html

此条目发表在未分类分类目录。将固定链接加入收藏夹。

发表评论

邮箱地址不会被公开。 必填项已用*标注