Asp.net Mvc Web App 项目似乎没有编译我添加到我创建的文件夹中的代码?
我的 asp.net mvc web 项目中有一个 Code 文件夹,我添加了一个 .cs 文件,编译器似乎没有发现我犯的任何错误。但是,如果我首先将 .cs 文件添加到 mvc web 项目的根目录,然后将其移动到 Code 文件夹,编译器将正常工作。为什么会发生这种情况?我正在使用 VS10 和 mvc3。谢谢。
编辑:我注意到我首先将文件夹命名为 App_Code,然后将其重命名为 Code,因此,如果您将 .cs 添加到 App_Code,编译器不会在这些文件夹上运行,即使您移动 .cs或将文件夹名称更改为其他名称。很奇怪。
I have a Code folder in my asp.net mvc web project, I added a .cs file and the compiler does not seem to pick up any errors I make. However, if I first add the .cs file to the root of my mvc web project and then moves it to the Code folder, the compiler will work properly. Why is this happening? I'm using VS10 and mvc3. Thanks.
Edit: I notice I first called the folder App_Code and then renamed it to Code, so it seems if you add .cs to App_Code the compiler doesn't run on those, even if you move the .cs out or change the folder name to something else. Very strange.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的描述,听起来文件上的
Build Action
未设置为Compile
。回应您的编辑。
App_Code
是ASP.NET中的一个特殊文件夹,它的文件在运行时编译。有关详细信息,请参阅:ASP 中的共享代码文件夹。 NET 网站From what you describing it sounds like the
Build Action
is not set toCompile
on your file.In response to your Edit. The
App_Code
is a special folder in ASP.NET, its files are compiled at run time. For more information see: Shared Code Folders in ASP.NET Web Sites