【发布时间】:2017-05-10 04:40:11
【问题描述】:
我有一个网站解决方案,我想将其转换为 Web 应用程序。
当我传输基本文件(如 DAL、BLL(我的意思是 .cs 文件))并构建我的解决方案时,它正在工作。
但是当我添加其他使用基本文件的文件时,我有很多错误,例如 (CS0246,CS0103,CS0118,CS1061)。
我看到这样的答案:
https://msdn.microsoft.com/en-us/library/w7xf6dxs.aspx
和
Why am I getting error CS0246: The type or namespace name could not be found?
我想知道我是否构建了我的解决方案和 Visual Studio 创建 .dll 文件,为什么我会出现提示未找到 X.dll 的错误?以及如何解决?
【问题讨论】:
标签: c# visual-studio web-applications web