├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── AngularTypeScriptDemo.sln ├── AngularTypeScriptDemo ├── AngularTypeScriptDemo.csproj ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── BeersAPIController.cs │ ├── BeersController.cs │ ├── HomeController.cs │ └── ManageController.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── AccountViewModels.cs │ ├── Beer.cs │ ├── IdentityModels.cs │ └── ManageViewModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── angular-mocks.js │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ ├── respond.min.js │ └── typings │ │ ├── angularjs │ │ ├── angular-animate.d.ts │ │ ├── angular-cookies.d.ts │ │ ├── angular-mocks.d.ts │ │ ├── angular-resource.d.ts │ │ ├── angular-route.d.ts │ │ ├── angular-sanitize.d.ts │ │ └── angular.d.ts │ │ └── jquery │ │ └── jquery.d.ts ├── Startup.cs ├── Views │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ ├── VerifyCode.cshtml │ │ └── _ExternalLoginsListPartial.cshtml │ ├── Beers │ │ ├── Delete.cshtml │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Lockout.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── app │ ├── app.js │ ├── app.js.map │ ├── app.ts │ ├── controllers │ │ ├── beer.controller.js │ │ ├── beer.controller.js.map │ │ └── beer.controller.ts │ └── services │ │ ├── beers.service.js │ │ ├── beers.service.js.map │ │ └── beers.service.ts ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── packages.config └── tslint.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo.sln -------------------------------------------------------------------------------- /AngularTypeScriptDemo/AngularTypeScriptDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/AngularTypeScriptDemo.csproj -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Content/Site.css -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Controllers/AccountController.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Controllers/BeersAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Controllers/BeersAPIController.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Controllers/BeersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Controllers/BeersController.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Controllers/ManageController.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Global.asax -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Global.asax.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Models/Beer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Models/Beer.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Models/IdentityModels.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Project_Readme.html -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/_references.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/angular-mocks.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/angular.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/angular.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/angular.min.js.map -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/respond.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/respond.min.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-animate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-animate.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-cookies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-cookies.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-mocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-mocks.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-resource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-resource.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-route.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular-sanitize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular-sanitize.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/angularjs/angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/angularjs/angular.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Scripts/typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Scripts/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Startup.cs -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Beers/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Beers/Delete.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Beers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Beers/Index.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Home/About.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/Web.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Web.Debug.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Web.Release.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/Web.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/app.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/app.js.map -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/app.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/controllers/beer.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/controllers/beer.controller.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/controllers/beer.controller.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/controllers/beer.controller.js.map -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/controllers/beer.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/controllers/beer.controller.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/services/beers.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/services/beers.service.js -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/services/beers.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/services/beers.service.js.map -------------------------------------------------------------------------------- /AngularTypeScriptDemo/app/services/beers.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/app/services/beers.service.ts -------------------------------------------------------------------------------- /AngularTypeScriptDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/favicon.ico -------------------------------------------------------------------------------- /AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AngularTypeScriptDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/packages.config -------------------------------------------------------------------------------- /AngularTypeScriptDemo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/AngularTypeScriptDemo/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/AngularJS-TypeScript-DevSuperPowers/HEAD/README.md --------------------------------------------------------------------------------