I have installed all the necessary sensenet packages and followed all steps in the read me file, still my application doesn't start or no exception is returned. It simply went infinite loading without returning the console back to the next line after base.Application_Start(sender, e, application);
Below is my code for global.asax
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace SensenetDemoApplication
{
public class MvcApplication : SenseNet.Portal.SenseNetGlobal
{
protected override void Application_Start(object sender, EventArgs e, HttpApplication application)
{
base.Application_Start(sender, e, application);
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}
I have installed all the necessary sensenet packages and followed all steps in the read me file, still my application doesn't start or no exception is returned. It simply went infinite loading without returning the console back to the next line after base.Application_Start(sender, e, application);
Below is my code for global.asax