I have a razor helper in App_Code/MyHelpers.cshtml
The generated class name in obj/CodeGen is
`public class _App_Code_MyHelpers_cshtml`
And of course all my views throw compile errors when referencing "MyHelpers.Something"
Adding `@* GeneratePrettyNames : true *@` does not fix the issue since the generated __namespace__ then becomes invisible in the view-code.
```
namespace ProjectName.App_Code
{
public class MyHelpers
}
```
Comments: I just added a subfolder to my test project and it still works fine. @jitbit, to demonstrate your problem, please send a pull request on my test project that shows in what case it's broken.
The generated class name in obj/CodeGen is
`public class _App_Code_MyHelpers_cshtml`
And of course all my views throw compile errors when referencing "MyHelpers.Something"
Adding `@* GeneratePrettyNames : true *@` does not fix the issue since the generated __namespace__ then becomes invisible in the view-code.
```
namespace ProjectName.App_Code
{
public class MyHelpers
}
```
Comments: I just added a subfolder to my test project and it still works fine. @jitbit, to demonstrate your problem, please send a pull request on my test project that shows in what case it's broken.