├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── .tfignore ├── AspNetExtendingIdentityRoles.sln ├── AspNetExtendingIdentityRoles ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs ├── AspNetExtendingIdentityRoles.csproj ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── RolesController.cs ├── Global.asax ├── Global.asax.cs ├── Migrations │ ├── 201402130341319_init.Designer.cs │ ├── 201402130341319_init.cs │ ├── 201402130341319_init.resx │ └── Configuration.cs ├── Models │ ├── AccountViewModels.cs │ ├── ApplicationDbContext.cs │ ├── ApplicationRole.cs │ ├── ApplicationUser.cs │ ├── ApplicationUserRole.cs │ └── IdentityManager.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Startup.cs ├── Views │ ├── Account │ │ ├── Delete.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── UserRoles.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Roles │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── EditorTemplates │ │ │ └── SelectRoleEditorViewModel.cshtml │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles.sln -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/AspNetExtendingIdentityRoles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/AspNetExtendingIdentityRoles.csproj -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Content/Site.css -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Content/bootstrap.css -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Content/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Controllers/AccountController.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Controllers/RolesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Controllers/RolesController.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Global.asax -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Global.asax.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Migrations/201402130341319_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Migrations/201402130341319_init.Designer.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Migrations/201402130341319_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Migrations/201402130341319_init.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Migrations/201402130341319_init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Migrations/201402130341319_init.resx -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Migrations/Configuration.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/ApplicationDbContext.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/ApplicationRole.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/ApplicationUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/ApplicationUserRole.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Models/IdentityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Models/IdentityManager.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Project_Readme.html -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/_references.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/bootstrap.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/respond.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Scripts/respond.min.js -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Startup.cs -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Delete.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Edit.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Index.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/UserRoles.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/UserRoles.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Home/About.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Roles/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Roles/Create.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Roles/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Roles/Delete.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Roles/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Roles/Edit.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Roles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Roles/Index.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Shared/EditorTemplates/SelectRoleEditorViewModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Shared/EditorTemplates/SelectRoleEditorViewModel.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/Web.config -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Web.Debug.config -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Web.Release.config -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/Web.config -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/favicon.ico -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AspNetExtendingIdentityRoles/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/AspNetExtendingIdentityRoles/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypecastException/AspNetExtendingIdentityRoles/HEAD/README.md --------------------------------------------------------------------------------