Asp.net Mvc Web App 项目似乎没有编译我添加到我创建的文件夹中的代码?

发布于 2025-01-07 03:50:23 字数 302 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2025-01-14 03:50:23

根据您的描述,听起来文件上的 Build Action 未设置为 Compile

回应您的编辑App_Code是ASP.NET中的一个特殊文件夹,它的文件在运行时编译。有关详细信息,请参阅:ASP 中的共享代码文件夹。 NET 网站

From what you describing it sounds like the Build Action is not set to Compile 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文