链接 Visual C# .NET Framework 4.0 支持的项目时出现此错误,因为我添加了 C++ CLR DLL 与 4.5 .NET Framework 的引用。
error CS0246: The type or namespace name 'project' could not be found (are you missing a using directive or an assembly reference?)
因此,对于这个 C++ CLR 支持的 DLL 项目,如何在 Visual Studio 2012 中将 .NET 框架 4.5 降级到 4.0?
我以前见过这个,这是原因。对于我的 C++,此链接可能有助于我的事业http://msdn.microsoft.com/en-us/library/bb772098(v=vs.90).aspx
我刚刚也发现了这个警告:
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1578,5): warning MSB3274: The primary reference "X" 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".
有人见过这个吗?那么我如何降级 C++ DLL?
谢谢