Changed EnableMvcSupport config section and classes to be: DefaultRenderingEngine which uses an enum.

Added a real handy Enum<T> class for parsing/traversing enums.
This commit is contained in:
Shannon Deminick
2012-10-09 02:42:09 +05:00
parent 747675816d
commit 9022894d23
13 changed files with 1278 additions and 1180 deletions

View File

@@ -0,0 +1,8 @@
namespace Umbraco.Core
{
public enum RenderingEngine
{
Mvc,
WebForms
}
}