Files
Umbraco-CMS/src/Umbraco.Web/Mvc/MvcVersionCheck.cs
2017-07-20 11:21:28 +02:00

11 lines
238 B
C#

namespace Umbraco.Web.Mvc
{
internal class MvcVersionCheck
{
public static System.Version MvcVersion
{
get { return typeof (System.Web.Mvc.Controller).Assembly.GetName().Version; }
}
}
}