c# – 命名空间“Microsoft”中不存在类型或命名空间名称“TeamFoundation”

前端之家收集整理的这篇文章主要介绍了c# – 命名空间“Microsoft”中不存在类型或命名空间名称“TeamFoundation”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
添加以下引用到我的ASP.NET MVC 4应用程序使用.net 4.0.

我还在我的应用程序中包含命名空间,但是我仍然看到以下错误

Reference : Microsoft.TeamFoundation.Client.dll
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\ReferenceAssemblies\v2.0\Microsoft.TeamFoundation.Client.dll

   "The type or namespace name 'TeamFoundation' does not exist in the namespace 'Microsoft' "

我有另一个控制台应用程序,我没有看到这个错误,而在该应用程序中使用引用.有没有什么不同我需要做一个Web / MVC应用程序?
请告诉我 .

还有我看到的这个警告:

Warning 1   The primary reference "Microsoft.TeamFoundation.Client,Version=12.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a,processorArchitecture=MSIL" could not be resolved because it was built against the ".NETFramework,Version=v4.5" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v4.0".

解决方法

您尝试在较低版本的项目(.net 4.0)中引用更高版本的dll(.net 4.5).

将您的项目升级到.net 4.5或参考.net 4.0版本的dll.

原文链接:https://www.f2er.com/csharp/96184.html

猜你在找的C#相关文章