I've got a Website project in VS.NET 2008. I have a class in App_Code folder
namespace RM{
public class MyClass{
...
}
}
I need to know what assembly this will compile to? You'd think it should be RM.dll but doesn't look like it.
I know that it's better to use WebApplication project instead, but it's not an option at this time.