diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-29 06:55:48 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-29 06:55:48 -0800 |
commit | 29d9694640f782d5ad0abc6550067b252a4ac194 (patch) | |
tree | 4deca5d9a09a3a751cb66d5cefec987dec6d3e81 /projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | |
parent | ce35609a8d9faff87adad503a0e59dfb01c27e68 (diff) | |
download | DotNetOpenAuth-29d9694640f782d5ad0abc6550067b252a4ac194.zip DotNetOpenAuth-29d9694640f782d5ad0abc6550067b252a4ac194.tar.gz DotNetOpenAuth-29d9694640f782d5ad0abc6550067b252a4ac194.tar.bz2 |
In the MVC project template, OpenIdRelyingParty now has a wrapping interface to allow for easier unit testability.
I also made a rash of StyleCop fixes.
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Controllers/HomeController.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs index 415bfe1..261aa37 100644 --- a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs +++ b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs @@ -1,10 +1,10 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; -using System.Web.Mvc; +namespace MvcRelyingParty.Controllers { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Web; + using System.Web.Mvc; -namespace MvcRelyingParty.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { |