19
02/2016
The type or namespace name XXX could not be found(are you missing using directive or an assembly reference?)
在vs2013中,一个项目引用另外一个项目,但是在编译的时候出现以下错误:
The type or namespace name XXX could not be found(are you missing using directive or an assembly reference?)
明明已经引用了,但是却显示我未引用。
经查阅,原来被引用项目与引用项目的.net版本不对,修改两个项目的.net框架版本相同即可。具体如下:
1、右键项目-》属性
2、在弹出的框中的目标框架中,使得引用项目的目标框架与被引用的目标框架相同。
参考:http://www.codeproject.com/Questions/255498/The-type-or-namespace-name-XXX-could-not-be-found
0 条评论