├── DapperIdentityDemo.sln ├── DapperIdentityDemo ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ └── HomeController.cs ├── DapperIdentityDemo.csproj ├── DapperIdentityDemo.csproj.user ├── DapperIdentityDemo.csproj.vspscc ├── Global.asax ├── Global.asax.cs ├── Identity │ └── UserStore.cs ├── Models │ ├── AccountViewModels.cs │ └── IdentityModels.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.0.3.intellisense.js │ ├── jquery-2.0.3.js │ ├── jquery-2.0.3.min.js │ ├── jquery-2.0.3.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.7.1.js │ ├── respond.js │ └── respond.min.js ├── Startup.cs ├── Views │ ├── Account │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ ├── _ExternalLoginsListPartial.cshtml │ │ ├── _RemoveAccountPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── Antlr3.Runtime.dll │ ├── Antlr3.Runtime.pdb │ ├── Dapper.dll │ ├── Dapper.pdb │ ├── Dapper.xml │ ├── DapperIdentityDemo.dll │ ├── DapperIdentityDemo.dll.config │ ├── DapperIdentityDemo.pdb │ ├── Microsoft.AspNet.Identity.Core.dll │ ├── Microsoft.AspNet.Identity.Core.xml │ ├── Microsoft.AspNet.Identity.Owin.dll │ ├── Microsoft.AspNet.Identity.Owin.xml │ ├── Microsoft.Owin.Host.SystemWeb.dll │ ├── Microsoft.Owin.Host.SystemWeb.xml │ ├── Microsoft.Owin.Security.Cookies.dll │ ├── Microsoft.Owin.Security.Cookies.xml │ ├── Microsoft.Owin.Security.Facebook.dll │ ├── Microsoft.Owin.Security.Facebook.xml │ ├── Microsoft.Owin.Security.Google.dll │ ├── Microsoft.Owin.Security.Google.xml │ ├── Microsoft.Owin.Security.MicrosoftAccount.dll │ ├── Microsoft.Owin.Security.MicrosoftAccount.xml │ ├── Microsoft.Owin.Security.OAuth.dll │ ├── Microsoft.Owin.Security.OAuth.xml │ ├── Microsoft.Owin.Security.Twitter.dll │ ├── Microsoft.Owin.Security.Twitter.xml │ ├── Microsoft.Owin.Security.dll │ ├── Microsoft.Owin.Security.xml │ ├── Microsoft.Owin.dll │ ├── Microsoft.Owin.xml │ ├── Microsoft.Web.Infrastructure.dll │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── Owin.dll │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Optimization.dll │ ├── System.Web.Optimization.xml │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ ├── System.Web.WebPages.xml │ └── WebGrease.dll ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── obj │ └── Debug │ │ ├── DapperIdentityDemo.csproj.FileListAbsolute.txt │ │ ├── DapperIdentityDemo.csprojResolveAssemblyReference.cache │ │ ├── DapperIdentityDemo.dll │ │ ├── DapperIdentityDemo.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── DatabaseDemo ├── DatabaseDemo.refactorlog ├── DatabaseDemo.sqlproj ├── DatabaseDemo.sqlproj.user ├── DatabaseDemo.sqlproj.vspscc ├── Tables │ ├── ExternalLogins.sql │ └── Users.sql ├── bin │ └── Debug │ │ ├── DatabaseDemo.dacpac │ │ ├── DatabaseDemo.dll │ │ ├── DatabaseDemo.pdb │ │ ├── DatabaseDemo.publish.sql │ │ └── DeploymentReport.txt └── obj │ └── Debug │ ├── DatabaseDemo.dll │ ├── DatabaseDemo.pdb │ └── DatabaseDemo.sqlproj.FileListAbsolute.txt ├── README.md └── packages ├── Antlr.3.5.0.2 ├── Antlr.3.5.0.2.nupkg ├── Antlr.3.5.0.2.nuspec └── lib │ ├── Antlr3.Runtime.dll │ └── Antlr3.Runtime.pdb ├── Dapper.1.13 ├── Dapper.1.13.nupkg ├── Dapper.1.13.nuspec └── lib │ ├── net35 │ ├── Dapper.dll │ ├── Dapper.pdb │ └── Dapper.xml │ ├── net40 │ ├── Dapper.dll │ ├── Dapper.pdb │ └── Dapper.xml │ └── net45 │ ├── Dapper.dll │ ├── Dapper.pdb │ └── Dapper.xml ├── Microsoft.AspNet.Identity.Core.1.0.0 ├── Microsoft.AspNet.Identity.Core.1.0.0.nupkg ├── Microsoft.AspNet.Identity.Core.1.0.0.nuspec └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Core.dll │ └── Microsoft.AspNet.Identity.Core.xml ├── Microsoft.AspNet.Identity.Owin.1.0.0 ├── Microsoft.AspNet.Identity.Owin.1.0.0.nupkg ├── Microsoft.AspNet.Identity.Owin.1.0.0.nuspec └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Owin.dll │ └── Microsoft.AspNet.Identity.Owin.xml ├── Microsoft.AspNet.Mvc.5.0.0 ├── Microsoft.AspNet.Mvc.5.0.0.nupkg ├── Microsoft.AspNet.Mvc.5.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.0.0 ├── Microsoft.AspNet.Razor.3.0.0.nupkg ├── Microsoft.AspNet.Razor.3.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.2 ├── Microsoft.AspNet.Web.Optimization.1.1.2.nupkg ├── Microsoft.AspNet.Web.Optimization.1.1.2.nuspec └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebPages.3.0.0 ├── Microsoft.AspNet.WebPages.3.0.0.nupkg ├── Microsoft.AspNet.WebPages.3.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Owin.2.0.2 ├── Microsoft.Owin.2.0.2.nupkg ├── Microsoft.Owin.2.0.2.nuspec └── lib │ ├── net40 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll │ └── net45 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll ├── Microsoft.Owin.Host.SystemWeb.2.0.2 ├── Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg ├── Microsoft.Owin.Host.SystemWeb.2.0.2.nuspec └── lib │ ├── net40 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml │ └── net45 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml ├── Microsoft.Owin.Security.2.0.2 ├── Microsoft.Owin.Security.2.0.2.nupkg ├── Microsoft.Owin.Security.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.XML │ └── Microsoft.Owin.Security.dll ├── Microsoft.Owin.Security.Cookies.2.0.2 ├── Microsoft.Owin.Security.Cookies.2.0.2.nupkg ├── Microsoft.Owin.Security.Cookies.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Cookies.dll │ └── Microsoft.Owin.Security.Cookies.xml ├── Microsoft.Owin.Security.Facebook.2.0.2 ├── Microsoft.Owin.Security.Facebook.2.0.2.nupkg ├── Microsoft.Owin.Security.Facebook.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Facebook.XML │ └── Microsoft.Owin.Security.Facebook.dll ├── Microsoft.Owin.Security.Google.2.0.2 ├── Microsoft.Owin.Security.Google.2.0.2.nupkg ├── Microsoft.Owin.Security.Google.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Google.XML │ └── Microsoft.Owin.Security.Google.dll ├── Microsoft.Owin.Security.MicrosoftAccount.2.0.2 ├── Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nupkg ├── Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.MicrosoftAccount.XML │ └── Microsoft.Owin.Security.MicrosoftAccount.dll ├── Microsoft.Owin.Security.OAuth.2.0.2 ├── Microsoft.Owin.Security.OAuth.2.0.2.nupkg ├── Microsoft.Owin.Security.OAuth.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.OAuth.XML │ └── Microsoft.Owin.Security.OAuth.dll ├── Microsoft.Owin.Security.Twitter.2.0.2 ├── Microsoft.Owin.Security.Twitter.2.0.2.nupkg ├── Microsoft.Owin.Security.Twitter.2.0.2.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Twitter.XML │ └── Microsoft.Owin.Security.Twitter.dll ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Validation.3.0.0 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js ├── Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg └── Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nuspec ├── Modernizr.2.7.1 ├── Content │ └── Scripts │ │ └── modernizr-2.7.1.js ├── Modernizr.2.7.1.nupkg ├── Modernizr.2.7.1.nuspec └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.5.0.8 ├── Newtonsoft.Json.5.0.8.nupkg ├── Newtonsoft.Json.5.0.8.nuspec ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netcore45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl4+wp7+win8 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Owin.1.0 ├── Owin.1.0.nupkg ├── Owin.1.0.nuspec └── lib │ └── net40 │ └── Owin.dll ├── Respond.1.3.0 ├── Respond.1.3.0.nupkg ├── Respond.1.3.0.nuspec └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── WebGrease.1.5.2.nuspec ├── lib │ └── WebGrease.dll └── tools │ └── WG.exe ├── bootstrap.3.0.3 ├── bootstrap.3.0.3.nupkg ├── bootstrap.3.0.3.nuspec └── content │ ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── jQuery.2.0.3 ├── Content │ └── Scripts │ │ ├── jquery-2.0.3-vsdoc.js │ │ ├── jquery-2.0.3.js │ │ ├── jquery-2.0.3.min.js │ │ └── jquery-2.0.3.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-2.0.3.intellisense.js │ └── uninstall.ps1 ├── jQuery.2.0.3.nupkg └── jQuery.2.0.3.nuspec ├── jQuery.Validation.1.11.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js ├── jQuery.Validation.1.11.1.nupkg └── jQuery.Validation.1.11.1.nuspec └── repositories.config /DapperIdentityDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo.sln -------------------------------------------------------------------------------- /DapperIdentityDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Content/Site.css -------------------------------------------------------------------------------- /DapperIdentityDemo/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /DapperIdentityDemo/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /DapperIdentityDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /DapperIdentityDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /DapperIdentityDemo/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Controllers/AccountController.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/DapperIdentityDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/DapperIdentityDemo.csproj -------------------------------------------------------------------------------- /DapperIdentityDemo/DapperIdentityDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/DapperIdentityDemo.csproj.user -------------------------------------------------------------------------------- /DapperIdentityDemo/DapperIdentityDemo.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/DapperIdentityDemo.csproj.vspscc -------------------------------------------------------------------------------- /DapperIdentityDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Global.asax -------------------------------------------------------------------------------- /DapperIdentityDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Global.asax.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Identity/UserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Identity/UserStore.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Models/IdentityModels.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/_references.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery-2.0.3.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery-2.0.3.intellisense.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/modernizr-2.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/modernizr-2.7.1.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/respond.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Scripts/respond.min.js -------------------------------------------------------------------------------- /DapperIdentityDemo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Startup.cs -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Home/About.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/Web.config -------------------------------------------------------------------------------- /DapperIdentityDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /DapperIdentityDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Web.Debug.config -------------------------------------------------------------------------------- /DapperIdentityDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Web.Release.config -------------------------------------------------------------------------------- /DapperIdentityDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/Web.config -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Dapper.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Dapper.pdb -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Dapper.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/DapperIdentityDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/DapperIdentityDemo.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/DapperIdentityDemo.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/DapperIdentityDemo.dll.config -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/DapperIdentityDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/DapperIdentityDemo.pdb -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Owin.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.AspNet.Identity.Owin.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Cookies.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Facebook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Facebook.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Facebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Facebook.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Google.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Google.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Google.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.MicrosoftAccount.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.MicrosoftAccount.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.MicrosoftAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.MicrosoftAccount.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.OAuth.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.OAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.OAuth.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Twitter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Twitter.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.Twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.Twitter.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.Security.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Owin.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/Owin.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Mvc.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Optimization.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/System.Web.WebPages.xml -------------------------------------------------------------------------------- /DapperIdentityDemo/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/bin/WebGrease.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/favicon.ico -------------------------------------------------------------------------------- /DapperIdentityDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /DapperIdentityDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /DapperIdentityDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /DapperIdentityDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/DapperIdentityDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/obj/Debug/DapperIdentityDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/DapperIdentityDemo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/obj/Debug/DapperIdentityDemo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/DapperIdentityDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/obj/Debug/DapperIdentityDemo.dll -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/DapperIdentityDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/obj/Debug/DapperIdentityDemo.pdb -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DapperIdentityDemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DapperIdentityDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DapperIdentityDemo/packages.config -------------------------------------------------------------------------------- /DatabaseDemo/DatabaseDemo.refactorlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/DatabaseDemo.refactorlog -------------------------------------------------------------------------------- /DatabaseDemo/DatabaseDemo.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/DatabaseDemo.sqlproj -------------------------------------------------------------------------------- /DatabaseDemo/DatabaseDemo.sqlproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/DatabaseDemo.sqlproj.user -------------------------------------------------------------------------------- /DatabaseDemo/DatabaseDemo.sqlproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/DatabaseDemo.sqlproj.vspscc -------------------------------------------------------------------------------- /DatabaseDemo/Tables/ExternalLogins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/Tables/ExternalLogins.sql -------------------------------------------------------------------------------- /DatabaseDemo/Tables/Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/Tables/Users.sql -------------------------------------------------------------------------------- /DatabaseDemo/bin/Debug/DatabaseDemo.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/bin/Debug/DatabaseDemo.dacpac -------------------------------------------------------------------------------- /DatabaseDemo/bin/Debug/DatabaseDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/bin/Debug/DatabaseDemo.dll -------------------------------------------------------------------------------- /DatabaseDemo/bin/Debug/DatabaseDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/bin/Debug/DatabaseDemo.pdb -------------------------------------------------------------------------------- /DatabaseDemo/bin/Debug/DatabaseDemo.publish.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/bin/Debug/DatabaseDemo.publish.sql -------------------------------------------------------------------------------- /DatabaseDemo/bin/Debug/DeploymentReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/bin/Debug/DeploymentReport.txt -------------------------------------------------------------------------------- /DatabaseDemo/obj/Debug/DatabaseDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/obj/Debug/DatabaseDemo.dll -------------------------------------------------------------------------------- /DatabaseDemo/obj/Debug/DatabaseDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/obj/Debug/DatabaseDemo.pdb -------------------------------------------------------------------------------- /DatabaseDemo/obj/Debug/DatabaseDemo.sqlproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/DatabaseDemo/obj/Debug/DatabaseDemo.sqlproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/README.md -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nuspec -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /packages/Dapper.1.13/Dapper.1.13.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/Dapper.1.13.nupkg -------------------------------------------------------------------------------- /packages/Dapper.1.13/Dapper.1.13.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/Dapper.1.13.nuspec -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net35/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net35/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net35/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net35/Dapper.pdb -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net35/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net35/Dapper.xml -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net40/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net40/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net40/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net40/Dapper.pdb -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net40/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net40/Dapper.xml -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net45/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net45/Dapper.dll -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net45/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net45/Dapper.pdb -------------------------------------------------------------------------------- /packages/Dapper.1.13/lib/net45/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Dapper.1.13/lib/net45/Dapper.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.1.0.0/Microsoft.AspNet.Identity.Core.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Core.1.0.0/Microsoft.AspNet.Identity.Core.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.1.0.0/Microsoft.AspNet.Identity.Core.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Core.1.0.0/Microsoft.AspNet.Identity.Core.1.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.1.0.0/lib/net45/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Core.1.0.0/lib/net45/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.1.0.0/lib/net45/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Core.1.0.0/lib/net45/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.1.0.0/Microsoft.AspNet.Identity.Owin.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Owin.1.0.0/Microsoft.AspNet.Identity.Owin.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.1.0.0/Microsoft.AspNet.Identity.Owin.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Owin.1.0.0/Microsoft.AspNet.Identity.Owin.1.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.1.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Owin.1.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.1.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Identity.Owin.1.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.2/Microsoft.AspNet.Web.Optimization.1.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.2/Microsoft.AspNet.Web.Optimization.1.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.2/Microsoft.AspNet.Web.Optimization.1.1.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.2/Microsoft.AspNet.Web.Optimization.1.1.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.2/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.2/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.2/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.2/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/Microsoft.Owin.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/Microsoft.Owin.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/Microsoft.Owin.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/Microsoft.Owin.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/lib/net40/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/lib/net40/Microsoft.Owin.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/lib/net40/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/lib/net40/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/lib/net45/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/lib/net45/Microsoft.Owin.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.0.2/lib/net45/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.2.0.2/lib/net45/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.0.2/Microsoft.Owin.Security.Cookies.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Cookies.2.0.2/Microsoft.Owin.Security.Cookies.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.0.2/Microsoft.Owin.Security.Cookies.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Cookies.2.0.2/Microsoft.Owin.Security.Cookies.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.0.2/lib/net45/Microsoft.Owin.Security.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Cookies.2.0.2/lib/net45/Microsoft.Owin.Security.Cookies.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.0.2/lib/net45/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Cookies.2.0.2/lib/net45/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.0.2/Microsoft.Owin.Security.Facebook.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Facebook.2.0.2/Microsoft.Owin.Security.Facebook.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.0.2/Microsoft.Owin.Security.Facebook.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Facebook.2.0.2/Microsoft.Owin.Security.Facebook.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.0.2/lib/net45/Microsoft.Owin.Security.Facebook.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Facebook.2.0.2/lib/net45/Microsoft.Owin.Security.Facebook.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.0.2/lib/net45/Microsoft.Owin.Security.Facebook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Facebook.2.0.2/lib/net45/Microsoft.Owin.Security.Facebook.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.0.2/Microsoft.Owin.Security.Google.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Google.2.0.2/Microsoft.Owin.Security.Google.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.0.2/Microsoft.Owin.Security.Google.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Google.2.0.2/Microsoft.Owin.Security.Google.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.0.2/lib/net45/Microsoft.Owin.Security.Google.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Google.2.0.2/lib/net45/Microsoft.Owin.Security.Google.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.0.2/lib/net45/Microsoft.Owin.Security.Google.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Google.2.0.2/lib/net45/Microsoft.Owin.Security.Google.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/Microsoft.Owin.Security.MicrosoftAccount.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.0.2/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.0.2/Microsoft.Owin.Security.OAuth.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.OAuth.2.0.2/Microsoft.Owin.Security.OAuth.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.0.2/Microsoft.Owin.Security.OAuth.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.OAuth.2.0.2/Microsoft.Owin.Security.OAuth.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.0.2/lib/net45/Microsoft.Owin.Security.OAuth.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.OAuth.2.0.2/lib/net45/Microsoft.Owin.Security.OAuth.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.0.2/lib/net45/Microsoft.Owin.Security.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.OAuth.2.0.2/lib/net45/Microsoft.Owin.Security.OAuth.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.0.2/Microsoft.Owin.Security.Twitter.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Twitter.2.0.2/Microsoft.Owin.Security.Twitter.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.0.2/Microsoft.Owin.Security.Twitter.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Twitter.2.0.2/Microsoft.Owin.Security.Twitter.2.0.2.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.0.2/lib/net45/Microsoft.Owin.Security.Twitter.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Twitter.2.0.2/lib/net45/Microsoft.Owin.Security.Twitter.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.0.2/lib/net45/Microsoft.Owin.Security.Twitter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Owin.Security.Twitter.2.0.2/lib/net45/Microsoft.Owin.Security.Twitter.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Content/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Content/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Content/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Content/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nuspec -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Content/Scripts/modernizr-2.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Content/Scripts/modernizr-2.7.1.js -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Modernizr.2.7.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Modernizr.2.7.1.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Modernizr.2.7.1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Modernizr.2.7.1.nuspec -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.7.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Modernizr.2.7.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nuspec -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Newtonsoft.Json.5.0.8/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Owin.1.0/Owin.1.0.nuspec -------------------------------------------------------------------------------- /packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /packages/Respond.1.3.0/Respond.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Respond.1.3.0/Respond.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/Respond.1.3.0/Respond.1.3.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Respond.1.3.0/Respond.1.3.0.nuspec -------------------------------------------------------------------------------- /packages/Respond.1.3.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Respond.1.3.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /packages/Respond.1.3.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/Respond.1.3.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nuspec -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/bootstrap.3.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/bootstrap.3.0.3.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/bootstrap.3.0.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/bootstrap.3.0.3.nuspec -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/bootstrap.3.0.3/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Content/Scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/jquery-2.0.3.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Tools/jquery-2.0.3.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/jQuery.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/jQuery.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/jQuery.2.0.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.2.0.3/jQuery.2.0.3.nuspec -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nuspec -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-j/DapperIdentityDemo/HEAD/packages/repositories.config --------------------------------------------------------------------------------