summaryrefslogtreecommitdiffstats
path: root/samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs')
-rw-r--r--samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs b/samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs
new file mode 100644
index 0000000..81cd640
--- /dev/null
+++ b/samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs
@@ -0,0 +1,21 @@
+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 DotNetOpenAuth.Samples.OpenIDConnectRP
+{
+ public class MvcApplication : System.Web.HttpApplication
+ {
+ protected void Application_Start()
+ {
+ AreaRegistration.RegisterAllAreas();
+ FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
+ RouteConfig.RegisterRoutes(RouteTable.Routes);
+ BundleConfig.RegisterBundles(BundleTable.Bundles);
+ }
+ }
+}