C# | App_Code class missing in the current context


Something as simple as creating a new class in Visual Studio can be tricky.
Lately I've been creating a class by right-clicking "App_Code" in a Web Project and selecting "Add", "Class..."



When accessing the class "Tiago", I would get:
- The name 'Tiago' does not exist in the current context
- The type or namespace name 'Tiago' could not be found (are you missing a using directive or an assembly reference?)




Here are some thoughts on this:
- Adding classes to the root folder works fine
- Adding classes to the root folder, and THEN moving them to the App_Code folder works fine
- Adding classes through the "Generate class for 'X'" context menu works fine

Why is this happening?
When you create a new class within the App_Code folder, its default behavior (check by clicking properties on the class) will be "Content", when it should be "Compile".

So we can just confirm we have the right namespace for the class (since creating it on a subfolder may add extra text to it) and change the "Build Action" to "Compile" instead of "Content".

Comments

  1. Thank you! I faced with the same problem and could not even assume that I had to check and change the behavior.

    ReplyDelete
  2. Era mesmo isto que precisava! Obrigada

    ReplyDelete

Post a Comment

Popular posts from this blog

Breaking down document locking in SharePoint

Working around X-Frame-Options for iframes

Document ID not being generated