我使用 .net 4.0 添加了对我的 ASP.NET MVC 4 应用程序的以下引用。
我还在我的 Application 中包含了命名空间,但仍然看到以下错误:
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".
最佳答案
您正在尝试在 低版本项目 09215138 (0x215138) 中引用 更高版本 dll( .net 4.5
)。
要么 升级 您的项目到 .net 4.0
要么引用 .net 4.5
版本 dll。
关于c# - 命名空间 'TeamFoundation' 中不存在类型或命名空间名称 'Microsoft',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26981124/