diff options
author | David Christiansen <DavidChristiansen@users.noreply.github.com> | 2015-01-05 21:31:54 +0000 |
---|---|---|
committer | David Christiansen <DavidChristiansen@users.noreply.github.com> | 2015-01-05 21:31:54 +0000 |
commit | b0f5f21523526c863b9a61f64864109d96738c9b (patch) | |
tree | b082a01743f2d20ce80dddcc4a99f88f0c49e1c4 /samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs | |
parent | f840b593c345265ebcfd6c1cf5b57ab6d948f92c (diff) | |
parent | 5fde84cfe2967d203c8bc183708394d95bb52c36 (diff) | |
download | DotNetOpenAuth-b0f5f21523526c863b9a61f64864109d96738c9b.zip DotNetOpenAuth-b0f5f21523526c863b9a61f64864109d96738c9b.tar.gz DotNetOpenAuth-b0f5f21523526c863b9a61f64864109d96738c9b.tar.bz2 |
Merge pull request #368 from DavidChristiansen/develop
Straight forward OpenID Connect RP example
Diffstat (limited to 'samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs')
-rw-r--r-- | samples/DotNetOpenAuth.Samples.OpenIDConnectRP/Global.asax.cs | 21 |
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); + } + } +} |