├── .deployment ├── .gitattributes ├── .gitignore ├── Azure ├── BeerDrinkin.DataSourceJobs │ ├── App.config │ ├── BeerDrinkin.DataSourceJobs.csproj │ ├── BeerDrinkinContext.cs │ ├── DataObjects │ │ ├── AppEvent.cs │ │ ├── AppFeedback.cs │ │ ├── BaseDataObject.cs │ │ ├── Beer.cs │ │ ├── Brewery.cs │ │ ├── CheckIn.cs │ │ ├── CheckInEnvironmentalCondition.cs │ │ ├── Favourite.cs │ │ ├── Image.cs │ │ ├── Rating.cs │ │ ├── Style.cs │ │ ├── User.cs │ │ └── Wish.cs │ ├── Functions.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── webjob-publish-settings.json │ └── packages.config ├── BeerDrinkin.Web │ ├── .bowerrc │ ├── BeerDrinkin.Web.xproj │ ├── Controllers │ │ ├── BeerController.cs │ │ ├── BeersController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ ├── DataObjects │ │ ├── BaseDataObject.cs │ │ ├── Beer.cs │ │ ├── CheckIn.cs │ │ ├── Favourite.cs │ │ ├── Rating.cs │ │ └── User.cs │ ├── Models │ │ ├── ApplicationDbContext.cs │ │ └── ApplicationUser.cs │ ├── Project_Readme.html │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── BeerDrinkinWeb - Web Deploy-publish.ps1 │ │ │ └── beerdrinkinservice - Web Deploy-publish.ps1 │ │ └── launchSettings.json │ ├── Service References │ │ └── Application Insights │ │ │ └── ConnectedService.json │ ├── Services │ │ ├── IEmailSender.cs │ │ ├── ISmsSender.cs │ │ └── MessageServices.cs │ ├── Startup.cs │ ├── ViewModels │ │ ├── Account │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ ├── ResetPasswordViewModel.cs │ │ │ ├── SendCodeViewModel.cs │ │ │ └── VerifyCodeViewModel.cs │ │ └── Manage │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ ├── ChangePasswordViewModel.cs │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ ├── FactorViewModel.cs │ │ │ ├── IndexViewModel.cs │ │ │ ├── ManageLoginsViewModel.cs │ │ │ ├── RemoveLoginViewModel.cs │ │ │ ├── SetPasswordViewModel.cs │ │ │ └── VerifyPhoneNumberViewModel.cs │ ├── Views │ │ ├── Account │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ └── VerifyCode.cshtml │ │ ├── AddressItems │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Beer │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Beers │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Features.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── AddPhoneNumber.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageLogins.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ └── VerifyPhoneNumber.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── appsettings.json │ ├── bower.json │ ├── gulpfile.js │ ├── package.json │ ├── project.json │ ├── project.lock.json │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── animate.css │ │ ├── beerdrinkin.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── magnific-popup.css │ │ ├── main.css │ │ ├── owl.carousel.css │ │ ├── preset │ │ │ ├── blue.css │ │ │ ├── dark.css │ │ │ ├── image-bg.css │ │ │ └── red.css │ │ ├── responsive.css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ ├── ASP-NET-Banners-01.png │ │ ├── ASP-NET-Banners-02.png │ │ ├── Azure-AppService.png │ │ ├── Banner-01-Azure.png │ │ ├── Banner-02-VS.png │ │ ├── Beers.png │ │ ├── WishList.png │ │ ├── Xamarin.png │ │ ├── XamarinInsights.png │ │ ├── XamarinPlatform.png │ │ ├── XamarinTestCloud.png │ │ ├── azure-white.png │ │ ├── azuresearch.png │ │ ├── bg │ │ │ ├── action-bg.jpg │ │ │ ├── action-bg2.jpg │ │ │ ├── apps-bg.jpg │ │ │ ├── home-bg.jpg │ │ │ ├── home-bg.png │ │ │ ├── price-bg.jpg │ │ │ ├── price-bg2.jpg │ │ │ ├── special-bg.jpg │ │ │ ├── special-bg2.jpg │ │ │ ├── team-bg.jpg │ │ │ ├── team-bg2.jpg │ │ │ ├── team1.jpg │ │ │ ├── team2.jpg │ │ │ ├── team3.jpg │ │ │ ├── team4.jpg │ │ │ ├── team5.jpg │ │ │ ├── testimonial1.jpg │ │ │ ├── testimonial2.jpg │ │ │ ├── video-bg.jpg │ │ │ └── video-bg2.jpg │ │ ├── breweryDbBadge.png │ │ ├── github-logo.png │ │ ├── header.png │ │ ├── home-bg.jpeg │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.ico │ │ ├── icons │ │ │ ├── b1.png │ │ │ ├── b2.png │ │ │ ├── b3.png │ │ │ ├── b4.png │ │ │ ├── b5.png │ │ │ ├── b6.png │ │ │ ├── b7.png │ │ │ ├── b8.png │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── f6.png │ │ │ ├── f7.png │ │ │ ├── f8.png │ │ │ ├── r1.png │ │ │ ├── r2.png │ │ │ ├── r3.png │ │ │ ├── r4.png │ │ │ ├── r5.png │ │ │ ├── r6.png │ │ │ ├── r7.png │ │ │ ├── r8.png │ │ │ ├── t1.png │ │ │ ├── t10.png │ │ │ ├── t2.png │ │ │ ├── t3.png │ │ │ ├── t4.png │ │ │ ├── t5.png │ │ │ ├── t6.png │ │ │ ├── t7.png │ │ │ ├── t8.png │ │ │ ├── t9.png │ │ │ ├── tw10.png │ │ │ ├── tw2.png │ │ │ ├── tw4.png │ │ │ ├── tw5.png │ │ │ ├── tw7.png │ │ │ ├── tw9.png │ │ │ ├── w1.png │ │ │ ├── w2.png │ │ │ ├── w3.png │ │ │ ├── w4.png │ │ │ ├── w5.png │ │ │ ├── w6.png │ │ │ ├── w7.png │ │ │ └── w8.png │ │ ├── logo-blue.png │ │ ├── logo-red.png │ │ ├── logo.png │ │ ├── machinelearning.png │ │ ├── mockup │ │ │ ├── mockup.png │ │ │ ├── os1.png │ │ │ ├── os2.png │ │ │ ├── screen1.jpg │ │ │ ├── screen1.png │ │ │ ├── screen2.jpg │ │ │ ├── screen2.png │ │ │ ├── screen3.jpg │ │ │ ├── screen3.png │ │ │ ├── screen4.jpg │ │ │ ├── screen4.png │ │ │ ├── special.png │ │ │ ├── video.png │ │ │ └── whatsit.png │ │ ├── slider-logo.png │ │ └── sprites.gif │ │ ├── js │ │ ├── bootstrap.min.js │ │ ├── canvas.js │ │ ├── html5shiv.js │ │ ├── jquery.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.nav.js │ │ ├── main.js │ │ ├── owl.carousel.min.js │ │ ├── preloader.js │ │ ├── respond.min.js │ │ ├── site.js │ │ └── wow.min.js │ │ ├── lib │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── MIT-LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── web.config └── BeerDrinkinService │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ ├── Startup.MobileApp.cs │ └── Startup.Swagger.cs │ ├── ApplicationInsights.config │ ├── BeerDrinkin.Service.csproj │ ├── BeerDrinkinContext.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ ├── AppEventController.cs │ ├── BarcodeController.cs │ ├── BeerController.cs │ ├── BeerCoverPhotoController.cs │ ├── CheckInController.cs │ ├── PictureController.cs │ ├── RatingController.cs │ ├── SearchController.cs │ ├── TrendingBeersController.cs │ ├── UserController.cs │ └── WishController.cs │ ├── DataObjects │ ├── AppEvent.cs │ ├── AzureSearchBeerResponse.cs │ ├── Barcode.cs │ ├── Brewery.cs │ ├── DeviceInfo.cs │ ├── Image.cs │ ├── Style.cs │ ├── WeatherCondition.cs │ └── Wish.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Helpers │ ├── BlobUtils.cs │ ├── IdentityHelper.cs │ └── QueryableExpandAttribute.cs │ ├── Indentify │ └── AdministratorAuthorizeAttribute.cs │ ├── Migrations │ └── Configuration.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Service References │ └── Application Insights │ │ └── ConnectedService.json │ ├── Services │ └── BreweryDBService.cs │ ├── Startup.cs │ ├── Views │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewStart.cshtml │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── packages.config │ └── scripts │ ├── ai.0.15.0-build58334.js │ ├── ai.0.15.0-build58334.min.js │ ├── bootstrap.js │ └── bootstrap.min.js ├── BeerDrinkin.Forms.sln ├── BeerDrinkin.FullBoar.sln ├── BeerDrinkin.sln ├── BeerDrinkin_Bitrise.sln ├── BeerDrinkin_XamarinStudio.sln ├── ClientSDKs ├── BeerDrinkin.AzureClient │ ├── AuthHandler.cs │ ├── AzureClient.cs │ ├── BeerDrinkin.AzureClient.csproj │ ├── IAzureClient.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.Core.Abstractions │ ├── BeerDrinkin.Core.Abstractions.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ └── IDeviceSearchProvider.cs │ ├── ViewModels │ │ ├── IAppFeedbackViewModel.cs │ │ ├── IBeersViewModel.cs │ │ ├── ICheckInViewModel.cs │ │ ├── ICheckInsViewModel.cs │ │ ├── IDiscoverViewModel.cs │ │ ├── IEnableUserLocationViewModel.cs │ │ ├── ITrendingBeersViewModel.cs │ │ ├── IUserProfileViewModel.cs │ │ └── IWishListViewModel.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.Core │ ├── BeerDrinkin.Core.csproj │ ├── Interfaces │ │ └── IAuthentication.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ViewModels │ │ ├── AppFeedbackViewModel.cs │ │ ├── AuthenticateViewModel.cs │ │ ├── BeerDescriptionViewModel.cs │ │ ├── BeersViewModel.cs │ │ ├── CheckInViewModel.cs │ │ ├── CheckInsViewModel.cs │ │ ├── Discover │ │ │ ├── DiscoverBreweriesViewModel.cs │ │ │ ├── DiscoverViewModel.cs │ │ │ ├── TrendingBeersViewModel.cs │ │ │ └── UsersViewModel.cs │ │ ├── MyBeersViewModel.cs │ │ ├── UserProfileViewModel.cs │ │ ├── ViewModelBase.cs │ │ ├── Welcome │ │ │ └── EnableUserLocationViewModel.cs │ │ └── WishListViewModel.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.DataObjects │ ├── AppEvent.cs │ ├── AppFeedback.cs │ ├── AppInsightsEvent.cs │ ├── Barcode.cs │ ├── BaseDataObject.cs │ ├── Beer.cs │ ├── BeerDrinkin.DataObjects.projitems │ ├── BeerDrinkin.DataObjects.shproj │ ├── Brewery.cs │ ├── CheckIn.cs │ ├── DeviceInfo.cs │ ├── Favourite.cs │ ├── Image.cs │ ├── PerformanceEvent.cs │ ├── Rating.cs │ ├── Style.cs │ ├── User.cs │ ├── WeatherCondition.cs │ └── Wish.cs ├── BeerDrinkin.DataStore.Abstractions │ ├── BeerDrinkin.DataStore.Abstractions.csproj │ ├── IBaseStore.cs │ ├── IBeerStore.cs │ ├── IBreweryStore.cs │ ├── ICheckInStore.cs │ ├── IRatingStore.cs │ ├── IStoreManager.cs │ ├── IUserStore.cs │ ├── IWishListStore.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.DataStore.Azure │ ├── BeerDrinkin.DataStore.Azure.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StoreManager.cs │ ├── Stores │ │ ├── BaseStore.cs │ │ ├── BeerStore.cs │ │ ├── BreweryStore.cs │ │ ├── CheckInStore.cs │ │ ├── RatingStore.cs │ │ ├── UserStore.cs │ │ └── WishStore.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.DataStore.Mock │ ├── BeerDrinkin.DataStore.Mock.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StoreManager.cs │ ├── Stores │ │ ├── BaseStore.cs │ │ └── CheckInStore.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.Services.Abstractions │ ├── BeerDrinkin.Services.Abstractions.csproj │ ├── IAppInsights.cs │ ├── IBarcodeService.cs │ ├── IImageService.cs │ ├── ILogService.cs │ ├── ISearchService.cs │ ├── ITrendsService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── BeerDrinkin.Services.Azure │ ├── BarcodeService.cs │ ├── BeerDrinkin.Services.Azure.csproj │ ├── ImageService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SearchService.cs │ ├── TrendsService.cs │ ├── app.config │ └── packages.config └── BeerDrinkin.Utils │ ├── BeerDrinkin.Utils.csproj │ ├── Helpers │ └── Settings.cs │ ├── Keys.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ServiceLocator.cs │ └── packages.config ├── Components ├── AMViralSwitch-1.0.0.0.info ├── AMViralSwitch-1.0.0.0.png ├── AMViralSwitch-1.0.0.0 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── AMViralSwitch_128x128.png │ │ │ └── AMViralSwitch_512x512.png │ ├── lib │ │ ├── ios-unified │ │ │ └── AMViralSwitch.dll │ │ └── ios │ │ │ └── AMViralSwitch.dll │ └── samples │ │ └── AMViralSwitchSample │ │ ├── AMViralSwitchSample.sln │ │ └── AMViralSwitchSample │ │ ├── AMViralSwitchSample.csproj │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── Resources │ │ └── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ └── Contents.json │ │ ├── ViewController.cs │ │ └── ViewController.designer.cs ├── Facebook.Pop-1.0.7.info ├── Facebook.Pop-1.0.7.png ├── Facebook.Pop-1.0.7 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── Facebook.Pop_128x128.png │ │ │ └── Facebook.Pop_512x512.png │ ├── lib │ │ └── ios-unified │ │ │ └── Facebook.Pop.dll │ └── samples │ │ └── PopSample │ │ ├── PopSample.sln │ │ └── PopSample │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard.storyboard │ │ ├── PopSample.csproj │ │ ├── PopSampleViewController.cs │ │ ├── PopSampleViewController.designer.cs │ │ └── Resources │ │ ├── Images.xcassets │ │ └── AppIcons.appiconset │ │ │ └── Contents.json │ │ ├── LaunchScreen.xib │ │ └── monkey.png ├── RZTransitions-1.2.0.0.info ├── RZTransitions-1.2.0.0.png ├── RZTransitions-1.2.0.0 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── RZTransitions_128x128.png │ │ │ └── RZTransitions_512x512.png │ ├── lib │ │ └── ios-unified │ │ │ └── RZTransitions.dll │ └── samples │ │ └── RZTransitionsDemo │ │ ├── RZTransitionsDemo.sln │ │ └── RZTransitionsDemo │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── RZTransitionsDemo.csproj │ │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ │ ├── SimpleColorViewController.cs │ │ ├── SimpleColorViewController.designer.cs │ │ ├── SimpleViewController.cs │ │ └── SimpleViewController.designer.cs ├── ViewShaker-1.1.info ├── ViewShaker-1.1.png ├── ViewShaker-1.1 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── ViewShaker_128x128.png │ │ │ └── ViewShaker_512x512.png │ ├── lib │ │ └── ios-unified │ │ │ └── ViewShaker.dll │ └── samples │ │ └── Sample │ │ ├── Sample.sln │ │ └── ViewShaker.Sample │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── ExampleViewController.cs │ │ ├── ExampleViewController.designer.cs │ │ ├── ExampleViewController.xib │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Resources │ │ └── Default-568h@2x.png │ │ ├── ViewShaker.Sample.csproj │ │ └── ViewShaker.dll ├── XCardView-1.1.info ├── XCardView-1.1.png ├── XCardView-1.1 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── XCardView_128x128.png │ │ │ └── XCardView_512x512.png │ │ └── screenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── lib │ │ └── ios-unified │ │ │ └── XCardView.dll │ └── samples │ │ ├── XCardViewSample │ │ ├── XCardViewSample.sln │ │ └── XCardViewSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DemoViewController.cs │ │ │ ├── DemoViewController.designer.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ ├── Resources │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcons.appiconset │ │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.xib │ │ │ └── XCardViewSample.csproj │ │ └── XCardViewSimpleSample │ │ ├── XCardViewSimpleSample.sln │ │ └── XCardViewSimpleSample │ │ ├── AppDelegate.cs │ │ ├── DemoViewController.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ │ └── XCardViewSimpleSample.csproj ├── calabash-16.2.info ├── calabash-16.2.png ├── calabash-16.2 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── calabash_128x128.png │ │ │ └── calabash_512x512.png │ │ └── screenshots │ │ │ └── Screenshot_1.png │ ├── lib │ │ ├── ios-unified │ │ │ └── Calabash.dll │ │ └── ios │ │ │ └── Calabash.dll │ └── samples │ │ ├── CalabashSample.iOS-Classic │ │ ├── AppDelegate.cs │ │ ├── CalabashSample.iOS-Classic.csproj │ │ ├── CalabashSample.iOS-Classic.sln │ │ ├── CalabashSample.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewController.xib │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── Images.xcassets │ │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── packages.config │ │ └── CalabashSample.iOS │ │ ├── AppDelegate.cs │ │ ├── CalabashSample.iOS-Classic.csproj │ │ ├── CalabashSample.iOS.csproj │ │ ├── CalabashSample.iOS.sln │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewController.xib │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ └── Contents.json │ │ └── packages.config ├── judopay-xamarin-sdk-2.3.0.info ├── judopay-xamarin-sdk-2.3.0.png ├── judopay-xamarin-sdk-2.3.0 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── judopay-xamarin-sdk_128x128.png │ │ │ └── judopay-xamarin-sdk_512x512.png │ ├── lib │ │ ├── android │ │ │ ├── JudoDotNetXamarin.dll │ │ │ ├── JudoDotNetXamarinAndroidSDK.dll │ │ │ └── JudoPayDotNet.dll │ │ └── ios-unified │ │ │ ├── JudoDotNetXamarin.dll │ │ │ ├── JudoDotNetXamariniOSSDK.dll │ │ │ ├── JudoPayDotNet.dll │ │ │ └── JudoShieldXamarin.dll │ └── samples │ │ ├── JudoPayAndroidXamarinSampleApp │ │ ├── Android.Xamarin.SampleApp │ │ │ ├── Android.Xamarin.SampleApp.csproj │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable │ │ │ │ │ └── Icon.png │ │ │ │ ├── layout │ │ │ │ │ └── withui.axml │ │ │ │ └── values │ │ │ │ │ ├── Strings.xml │ │ │ │ │ └── mystyles.xml │ │ │ ├── WithUIActivity.cs │ │ │ └── packages.config │ │ └── JudoPayAndroidXamarinSampleApp.sln │ │ └── JudoPayiOSXamarinSampleApp │ │ ├── JudoPayiOSXamarinSampleApp.sln │ │ └── JudoPayiOSXamarinSampleApp │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── JudoPayiOSXamarinSampleApp.csproj │ │ ├── Main.cs │ │ ├── MainMenuSource.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ │ ├── RootView.cs │ │ ├── RootView.designer.cs │ │ ├── RootView.xib │ │ └── packages.config ├── pdreview-2.0.2.info ├── pdreview-2.0.2.png ├── pdreview-2.0.2 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── pdreview_128x128.png │ │ │ └── pdreview_512x512.png │ │ └── screenshots │ │ │ ├── custom-background.png │ │ │ ├── five-stars-scale.png │ │ │ ├── six-moustaches-scale.png │ │ │ └── ten-tomatoes-scale.png │ ├── lib │ │ ├── ios-unified │ │ │ └── PDRating.dll │ │ └── ios │ │ │ └── PDRating.dll │ └── samples │ │ ├── PDRatingSample-Classic │ │ ├── PDRatingSample-Classic.sln │ │ └── PDRatingSample │ │ │ ├── AppDelegate.cs │ │ │ ├── CustomBackgroundViewController.cs │ │ │ ├── Default-568h@2x.png │ │ │ ├── FiveStarViewController.cs │ │ │ ├── Info.plist │ │ │ ├── PDRatingSample-Classic.csproj │ │ │ ├── PDRatingSample.csproj │ │ │ ├── Resources │ │ │ ├── Background │ │ │ │ └── background.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Moustaches │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ ├── Stars │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ └── Tomatoes │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ ├── SampleTableViewControllerController.cs │ │ │ ├── SixMoustachesViewController.cs │ │ │ └── TenMoustachesViewController.cs │ │ └── PDRatingSample │ │ ├── PDRatingSample.sln │ │ └── PDRatingSample │ │ ├── AppDelegate.cs │ │ ├── CustomBackgroundViewController.cs │ │ ├── Default-568h@2x.png │ │ ├── FiveStarViewController.cs │ │ ├── Info.plist │ │ ├── PDRatingSample-Classic.csproj │ │ ├── PDRatingSample.csproj │ │ ├── Resources │ │ ├── Background │ │ │ └── background.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Moustaches │ │ │ ├── chosen.png │ │ │ ├── empty.png │ │ │ └── filled.png │ │ ├── Stars │ │ │ ├── chosen.png │ │ │ ├── empty.png │ │ │ └── filled.png │ │ └── Tomatoes │ │ │ ├── chosen.png │ │ │ ├── empty.png │ │ │ └── filled.png │ │ ├── SampleTableViewControllerController.cs │ │ ├── SixMoustachesViewController.cs │ │ └── TenMoustachesViewController.cs ├── sdwebimage-3.7.1.4.info ├── sdwebimage-3.7.1.4.png ├── sdwebimage-3.7.1.4 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── sdwebimage_128x128.png │ │ │ └── sdwebimage_512x512.png │ ├── lib │ │ ├── ios-unified │ │ │ └── SDWebImage.dll │ │ └── ios │ │ │ └── SDWebImage.dll │ └── samples │ │ ├── SDWebImageMTDialogSample-Classic │ │ ├── SDWebImageMTDialogSample-Classic.sln │ │ └── SDWebImageMTDialogSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── ImageLoaderElement.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageMTDialogSample-Classic.csproj │ │ ├── SDWebImageMTDialogSample │ │ ├── SDWebImageMTDialogSample.sln │ │ └── SDWebImageMTDialogSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── ImageLoaderElement.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageMTDialogSample.csproj │ │ ├── SDWebImageSample-Classic │ │ ├── SDWebImageSample-Classic.sln │ │ └── SDWebImageSample-Classic │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── DetailViewController.designer.cs │ │ │ ├── DetailViewController.xib │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MasterViewController.cs │ │ │ ├── MasterViewController.designer.cs │ │ │ ├── MasterViewController.xib │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageSample-Classic.csproj │ │ ├── SDWebImageSample │ │ ├── SDWebImageSample.sln │ │ └── SDWebImageSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── DetailViewController.designer.cs │ │ │ ├── DetailViewController.xib │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MasterViewController.cs │ │ │ ├── MasterViewController.designer.cs │ │ │ ├── MasterViewController.xib │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageSample.csproj │ │ ├── SDWebImageSimpleSample-Classic │ │ ├── SDWebImageSimpleSample-Classic.sln │ │ └── SDWebImageSimpleSample-Classic │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ ├── SDWebImageSimpleSample-Classic.csproj │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ │ └── SDWebImageSimpleSample │ │ ├── SDWebImageSimpleSample.sln │ │ └── SDWebImageSimpleSample │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── placeholder.png │ │ └── placeholder@2x.png │ │ ├── SDWebImageSimpleSample.csproj │ │ ├── SampleViewController.cs │ │ ├── SampleViewController.designer.cs │ │ └── SampleViewController.xib ├── sqlcipher-for-xamarin-ios-3.3.1.0.info ├── sqlcipher-for-xamarin-ios-3.3.1.0.png ├── sqlcipher-for-xamarin-ios-3.3.1.0 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── sqlcipher-for-xamarin-ios_128x128.png │ │ │ └── sqlcipher-for-xamarin-ios_512x512.png │ ├── lib │ │ ├── ios-unified │ │ │ └── Mono.Data.Sqlcipher.dll │ │ └── ios │ │ │ └── Mono.Data.Sqlcipher.dll │ └── samples │ │ ├── sqlcipher-ios-unified-demo │ │ ├── sqlcipher-ios-unified-demo.sln │ │ └── sqlcipher-ios-unified-demo │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── demoViewController.cs │ │ │ ├── demoViewController.designer.cs │ │ │ ├── demoViewController.xib │ │ │ └── sqlcipher-ios-unified-demo.csproj │ │ └── sqlcipher-monotouch-demo │ │ ├── sqlcipher-monotouch-demo.sln │ │ └── sqlcipher-monotouch │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── demoViewController.cs │ │ ├── demoViewController.designer.cs │ │ ├── demoViewController.xib │ │ └── sqlcipher-monotouch-demo.csproj ├── swtableviewcell-0.3.6.1.info ├── swtableviewcell-0.3.6.1.png ├── swtableviewcell-0.3.6.1 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── swtableviewcell_128x128.png │ │ │ └── swtableviewcell_512x512.png │ │ └── screenshots │ │ │ ├── screenshot2.png │ │ │ ├── screenshot3.png │ │ │ └── screenshot4.png │ ├── lib │ │ ├── ios-unified │ │ │ └── SWTableViewCell.dll │ │ └── ios │ │ │ └── SWTableViewCell.dll │ └── samples │ │ ├── SWTableViewCellSample-classic │ │ ├── SWTableViewCellSample-classic.sln │ │ └── SWTableViewCellSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainStoryboard.storyboard │ │ │ ├── Resources │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── MI.png │ │ │ ├── check@2x.png │ │ │ ├── clock@2x.png │ │ │ ├── cross@2x.png │ │ │ ├── list@2x.png │ │ │ └── um.png │ │ │ ├── SWTableViewCellSample-classic.csproj │ │ │ ├── SWTableViewCellSample.csproj │ │ │ ├── UMTableViewCell.cs │ │ │ ├── UMTableViewCell.designer.cs │ │ │ ├── ViewController.cs │ │ │ └── ViewController.designer.cs │ │ └── SWTableViewCellSample │ │ ├── SWTableViewCellSample.sln │ │ └── SWTableViewCellSample │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard.storyboard │ │ ├── Resources │ │ ├── Images.xcassets │ │ │ ├── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ └── Icon@2x.png │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── MI.png │ │ ├── check@2x.png │ │ ├── clock@2x.png │ │ ├── cross@2x.png │ │ ├── list@2x.png │ │ └── um.png │ │ ├── SWTableViewCellSample-classic.csproj │ │ ├── SWTableViewCellSample.csproj │ │ ├── UMTableViewCell.cs │ │ ├── UMTableViewCell.designer.cs │ │ ├── ViewController.cs │ │ └── ViewController.designer.cs ├── xamarin.auth-1.2.3.1.info ├── xamarin.auth-1.2.3.1.png ├── xamarin.auth-1.2.3.1 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── xamarin.auth_128x128.png │ │ │ └── xamarin.auth_512x512.png │ │ └── screenshots │ │ │ └── 00.png │ ├── docs │ │ ├── xamarin.auth.source │ │ ├── xamarin.auth.tree │ │ └── xamarin.auth.zip │ ├── lib │ │ ├── android │ │ │ ├── Xamarin.Auth.Android.dll │ │ │ └── Xamarin.Auth.Android.xml │ │ ├── ios-unified │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ └── Xamarin.Auth.iOS.xml │ │ └── ios │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ └── Xamarin.Auth.iOS.xml │ └── samples │ │ ├── Xamarin.Auth.Sample.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── Xamarin.Auth Sample (Android).csproj │ │ └── Xamarin.Auth.Sample.Android.sln │ │ ├── Xamarin.Auth.Sample.iOS-Classic │ │ ├── AppDelegate.cs │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Xamarin.Auth Sample (iOS Classic).csproj │ │ ├── Xamarin.Auth Sample (iOS).csproj │ │ └── Xamarin.Auth.Sample.iOS-Classic.sln │ │ └── Xamarin.Auth.Sample.iOS │ │ ├── AppDelegate.cs │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Xamarin.Auth Sample (iOS Classic).csproj │ │ ├── Xamarin.Auth Sample (iOS).csproj │ │ └── Xamarin.Auth.Sample.iOS.sln ├── xamarin.inapppurchase-2.8.info ├── xamarin.inapppurchase-2.8.png ├── xamarin.inapppurchase-2.8 │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── xamarin.inapppurchase_128x128.png │ │ │ └── xamarin.inapppurchase_512x512.png │ ├── docs │ │ ├── xamarin.inapppurchase.source │ │ ├── xamarin.inapppurchase.tree │ │ └── xamarin.inapppurchase.zip │ ├── lib │ │ ├── ios-unified │ │ │ ├── Xamarin.InAppPurchase-Unified.dll │ │ │ └── Xamarin.InAppPurchase-Unified.xml │ │ └── ios │ │ │ ├── Xamarin.InAppPurchase.dll │ │ │ └── Xamarin.InAppPurchase.xml │ └── samples │ │ ├── InAppPurchaseTest-Unified │ │ ├── InAppPurchaseTest-Unified.sln │ │ └── InAppPurchaseTest-Unified │ │ │ ├── AppDelegate.cs │ │ │ ├── Content │ │ │ └── DefaultText.html │ │ │ ├── Entitlements.plist │ │ │ ├── FeaturesController.cs │ │ │ ├── FeaturesController.designer.cs │ │ │ ├── Images │ │ │ ├── Consumable.png │ │ │ ├── Consumable@2x.png │ │ │ ├── DefaultHeader.png │ │ │ ├── DefaultHeader@2x.png │ │ │ ├── Downloadable.png │ │ │ ├── Downloadable@2x.png │ │ │ ├── FreeSubscription.png │ │ │ ├── FreeSubscription@2x.png │ │ │ ├── NonConsumable.png │ │ │ ├── NonConsumable@2x.png │ │ │ ├── NonRenewingSubscription.png │ │ │ ├── NonRenewingSubscription@2x.png │ │ │ ├── RestorePurchases.png │ │ │ ├── RestorePurchases@2x.png │ │ │ ├── Subscription.png │ │ │ ├── Subscription@2x.png │ │ │ ├── Unknown.png │ │ │ └── Unknown@2x.png │ │ │ ├── InAppPurchaseTest-Unified.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainStoryboard.storyboard │ │ │ ├── MainViewController.cs │ │ │ ├── MainViewController.designer.cs │ │ │ ├── ProductContent.cs │ │ │ ├── ProductContent.designer.cs │ │ │ ├── PurchaseTableCell.cs │ │ │ ├── PurchaseTableCell.designer.cs │ │ │ ├── PurchaseTableSource.cs │ │ │ ├── PurchaseTableViewController.cs │ │ │ ├── PurchaseTableViewController.designer.cs │ │ │ ├── Resources │ │ │ ├── Coins.png │ │ │ ├── Coins@2x.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcons.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Logo.png │ │ │ ├── Logo@2x.png │ │ │ ├── cards.png │ │ │ ├── cards@2x.png │ │ │ ├── controller.png │ │ │ ├── controller@2x.png │ │ │ ├── first.png │ │ │ ├── first@2x.png │ │ │ ├── gears.png │ │ │ ├── gears@2x.png │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork.png │ │ │ ├── iTunesArtwork@2x │ │ │ ├── second.png │ │ │ ├── second@2x.png │ │ │ ├── shopping-cart.png │ │ │ └── shopping-cart@2x.png │ │ │ ├── SettingsController.cs │ │ │ ├── SettingsController.designer.cs │ │ │ ├── SettingsViewController.cs │ │ │ ├── SettingsViewController.designer.cs │ │ │ ├── StoreTableCell.cs │ │ │ ├── StoreTableCell.designer.cs │ │ │ ├── StoreTableSource.cs │ │ │ ├── StoreTableViewController.cs │ │ │ ├── StoreTableViewController.designer.cs │ │ │ ├── iTunesArtwork │ │ │ └── iTunesArtwork@2x │ │ └── InAppPurchaseTest │ │ ├── InAppPurchaseTest.sln │ │ └── InAppPurchaseTest │ │ ├── AppDelegate.cs │ │ ├── Content │ │ └── DefaultText.html │ │ ├── Entitlements.plist │ │ ├── FeaturesController.cs │ │ ├── FeaturesController.designer.cs │ │ ├── Images │ │ ├── Consumable.png │ │ ├── Consumable@2x.png │ │ ├── DefaultHeader.png │ │ ├── DefaultHeader@2x.png │ │ ├── Downloadable.png │ │ ├── Downloadable@2x.png │ │ ├── FreeSubscription.png │ │ ├── FreeSubscription@2x.png │ │ ├── NonConsumable.png │ │ ├── NonConsumable@2x.png │ │ ├── NonRenewingSubscription.png │ │ ├── NonRenewingSubscription@2x.png │ │ ├── RestorePurchases.png │ │ ├── RestorePurchases@2x.png │ │ ├── Subscription.png │ │ ├── Subscription@2x.png │ │ ├── Unknown.png │ │ └── Unknown@2x.png │ │ ├── InAppPurchaseTest.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard.storyboard │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── ProductContent.cs │ │ ├── ProductContent.designer.cs │ │ ├── PurchaseTableCell.cs │ │ ├── PurchaseTableCell.designer.cs │ │ ├── PurchaseTableSource.cs │ │ ├── PurchaseTableViewController.cs │ │ ├── PurchaseTableViewController.designer.cs │ │ ├── Resources │ │ ├── Coins.png │ │ ├── Coins@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Spotlight-40.png │ │ ├── Icon-Spotlight-40@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Logo.png │ │ ├── Logo@2x.png │ │ ├── cards.png │ │ ├── cards@2x.png │ │ ├── controller.png │ │ ├── controller@2x.png │ │ ├── first.png │ │ ├── first@2x.png │ │ ├── gears.png │ │ ├── gears@2x.png │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork.png │ │ ├── iTunesArtwork@2x │ │ ├── second.png │ │ ├── second@2x.png │ │ ├── shopping-cart.png │ │ └── shopping-cart@2x.png │ │ ├── SettingsController.cs │ │ ├── SettingsController.designer.cs │ │ ├── SettingsViewController.cs │ │ ├── SettingsViewController.designer.cs │ │ ├── StoreTableCell.cs │ │ ├── StoreTableCell.designer.cs │ │ ├── StoreTableSource.cs │ │ ├── StoreTableSource.xcassets │ │ ├── AppIcons.appiconset │ │ │ └── Contents.json │ │ └── LaunchImages.launchimage │ │ │ └── Contents.json │ │ ├── StoreTableViewController.cs │ │ ├── StoreTableViewController.designer.cs │ │ ├── iTunesArtwork │ │ └── iTunesArtwork@2x ├── zxing.net.mobile-1.5.1.0.info ├── zxing.net.mobile-1.5.1.0.png └── zxing.net.mobile-1.5.1.0 │ ├── component │ ├── Details.md │ ├── GettingStarted.md │ ├── License.md │ ├── Manifest.xml │ └── icons │ │ ├── zxing.net.mobile_128x128.png │ │ └── zxing.net.mobile_512x512.png │ ├── lib │ ├── android │ │ ├── ZXingNetMobile.dll │ │ └── zxing.portable.dll │ ├── ios-unified │ │ ├── ZXingNetMobile.dll │ │ └── zxing.portable.dll │ ├── ios │ │ ├── ZXingNetMobile.dll │ │ └── zxing.portable.dll │ └── winphone-8.0 │ │ ├── ZXingNetMobile.dll │ │ └── zxing.portable.dll │ └── samples │ ├── Sample.Android │ ├── Sample.Android.sln │ └── Sample.Android │ │ ├── Assets │ │ └── AboutAssets.txt │ │ ├── FragmentActivity.cs │ │ ├── ImageActivity.cs │ │ ├── MainActivity.cs │ │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── launcher.png │ │ ├── drawable-mdpi │ │ │ └── launcher.png │ │ ├── drawable-xhdpi │ │ │ └── launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── launcher.png │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ ├── FragmentActivity.axml │ │ │ ├── ImageActivity.axml │ │ │ ├── Main.axml │ │ │ └── ZxingOverlay.axml │ │ └── values │ │ │ └── Strings.xml │ │ ├── Sample.Android.csproj │ │ └── packages.config │ ├── Sample.WindowsPhone8 │ ├── Sample.WindowsPhone8.sln │ └── Sample.WindowsPhone8 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationIcon.png │ │ ├── Background.png │ │ ├── ImagePage.xaml │ │ ├── ImagePage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ │ ├── Sample.WindowsPhone8.csproj │ │ ├── SplashScreenImage.jpg │ │ ├── WriteableBitmapExWinPhone.dll │ │ └── packages.config │ ├── Sample.iOS-Classic │ ├── Sample.iOS-Classic.sln │ └── Sample.iOS │ │ ├── AppDelegate.cs │ │ ├── CustomOverlayView.cs │ │ ├── HomeViewController.cs │ │ ├── ImageViewController.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Sample.iOS-Classic.csproj │ │ ├── Sample.iOS.csproj │ │ └── packages.config │ └── Sample.iOS │ ├── Sample.iOS.sln │ └── Sample.iOS │ ├── AppDelegate.cs │ ├── CustomOverlayView.cs │ ├── HomeViewController.cs │ ├── ImageViewController.cs │ ├── Info.plist │ ├── Main.cs │ ├── Sample.iOS-Classic.csproj │ ├── Sample.iOS.csproj │ └── packages.config ├── Design ├── Color Palette.png └── Icon.png ├── LICENSE ├── Misc ├── UK Beers.xlsx └── Web │ ├── css-theme │ ├── animate.min.css │ ├── blog.css │ ├── font-awesome.min.css │ ├── nivo-lightbox.min.css │ └── theme.css │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css │ ├── fonts-theme │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── images │ ├── Facebook Avatar (Retina).png │ ├── Facebook Cover (Retina).png │ ├── background.jpg │ ├── blog │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── mac.jpg │ │ ├── office-people.jpg │ │ └── office.jpg │ ├── browser-slider │ │ ├── 652x340.gif │ │ └── browser.png │ ├── devices.png │ ├── features │ │ ├── android.png │ │ ├── favoriteBeers.png │ │ ├── offline.png │ │ └── social.png │ ├── imac-slider │ │ ├── 514x275.gif │ │ └── imac.png │ ├── iphone-bg.png │ ├── iphone.png │ ├── logo.png │ ├── plugin-images │ │ ├── Thumbs.db │ │ ├── close.png │ │ ├── close@2x.png │ │ ├── loading.gif │ │ ├── loading@2x.gif │ │ ├── next.png │ │ ├── next@2x.png │ │ ├── prev.png │ │ └── prev@2x.png │ ├── portfolio │ │ ├── 1280x800.gif │ │ └── 400x300.gif │ └── team │ │ ├── team-1.jpg │ │ ├── team-2.jpg │ │ └── team-3.png │ ├── index.html │ ├── js-theme │ ├── call.js │ ├── jquery.bxslider.min.js │ ├── jquery.mixitup.min.js │ ├── nivo-lightbox.min.js │ └── wow.min.js │ └── js │ └── bootstrap.min.js ├── MobileApps ├── .nuget │ └── packages.config ├── CameraViewController │ ├── BeerDrinkin.CameraViewController.csproj │ ├── Helpers │ │ └── Strings.cs │ ├── Models │ │ └── ImageModel.cs │ ├── MyClass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── CameraViewAssets.xcassets │ │ │ ├── ALPlaceholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── placeholder.png │ │ │ │ ├── placeholder@2x.png │ │ │ │ └── placeholder@3x.png │ │ │ ├── Contents.json │ │ │ ├── cameraButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cameraButton.png │ │ │ │ ├── cameraButton@2x.png │ │ │ │ └── cameraButton@3x.png │ │ │ ├── cameraButtonHighlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cameraButtonHighlighted.png │ │ │ │ ├── cameraButtonHighlighted@2x.png │ │ │ │ └── cameraButtonHighlighted@3x.png │ │ │ ├── closeButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── closeButton.png │ │ │ │ ├── closeButton@2x.png │ │ │ │ └── closeButton@3x.png │ │ │ ├── confirmButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── confirmButton.png │ │ │ │ ├── confirmButton@2x.png │ │ │ │ └── confirmButton@3x.png │ │ │ ├── flashOffIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── flashOffIcon.png │ │ │ │ ├── flashOffIcon@2x.png │ │ │ │ └── flashOffIcon@3x.png │ │ │ ├── flashOnIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── flashOnIcon.png │ │ │ │ ├── flashOnIcon@2x.png │ │ │ │ └── flashOnIcon@3x.png │ │ │ ├── libraryButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── libraryButton.png │ │ │ │ ├── libraryButton@2x.png │ │ │ │ └── libraryButton@3x.png │ │ │ ├── libraryCancel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── libraryCancel.png │ │ │ │ ├── libraryCancel@2x.png │ │ │ │ └── libraryCancel@3x.png │ │ │ ├── libraryConfirm.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── libraryConfirm.png │ │ │ │ ├── libraryConfirm@2x.png │ │ │ │ └── libraryConfirm@3x.png │ │ │ ├── permissionsIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cameraPermissionsIcon.png │ │ │ │ ├── cameraPermissionsIcon@2x.png │ │ │ │ └── cameraPermissionsIcon@3x.png │ │ │ ├── retakeButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── retakeButton.png │ │ │ │ ├── retakeButton@2x.png │ │ │ │ └── retakeButton@3x.png │ │ │ └── swapButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── swapButton.png │ │ │ │ ├── swapButton@2x.png │ │ │ │ └── swapButton@3x.png │ │ ├── cameraButton.png │ │ ├── cameraButton@2x.png │ │ ├── cameraButton@3x.png │ │ ├── cameraButtonHighlighted.png │ │ ├── cameraButtonHighlighted@2x.png │ │ ├── cameraButtonHighlighted@3x.png │ │ ├── cameraPermissionsIcon.png │ │ ├── cameraPermissionsIcon@2x.png │ │ ├── cameraPermissionsIcon@3x.png │ │ ├── closeButton.png │ │ ├── closeButton@2x.png │ │ ├── closeButton@3x.png │ │ ├── confirmButton.png │ │ ├── confirmButton@2x.png │ │ ├── confirmButton@3x.png │ │ ├── flashOffIcon.png │ │ ├── flashOffIcon@2x.png │ │ ├── flashOffIcon@3x.png │ │ ├── flashOnIcon.png │ │ ├── flashOnIcon@2x.png │ │ ├── flashOnIcon@3x.png │ │ ├── libraryButton.png │ │ ├── libraryButton@2x.png │ │ ├── libraryButton@3x.png │ │ ├── libraryCancel.png │ │ ├── libraryCancel@2x.png │ │ ├── libraryCancel@3x.png │ │ ├── libraryConfirm.png │ │ ├── libraryConfirm@2x.png │ │ ├── libraryConfirm@3x.png │ │ ├── placeholder.png │ │ ├── placeholder@2x.png │ │ ├── placeholder@3x.png │ │ ├── retakeButton.png │ │ ├── retakeButton@2x.png │ │ ├── retakeButton@3x.png │ │ ├── swapButton.png │ │ ├── swapButton@2x.png │ │ └── swapButton@3x.png │ ├── View Controllers │ │ ├── CameraViewController.cs │ │ └── ConfirmViewController.cs │ └── Views │ │ ├── CameraView.cs │ │ ├── CropOverlay.cs │ │ └── PermissionsView.cs ├── Components │ ├── MessageBar-ios-1.1.1.info │ ├── MessageBar-ios-1.1.1.png │ ├── MessageBar-ios-1.1.1 │ │ ├── component │ │ │ └── icons │ │ │ │ ├── MessageBar-ios_128x128.png │ │ │ │ └── MessageBar-ios_512x512.png │ │ └── samples │ │ │ ├── MessageBarTest-Classic │ │ │ ├── MessageBarTest-Classic.sln │ │ │ └── MessageBarTest │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MessageBarSample-Classic.csproj │ │ │ │ ├── MessageBarSample.csproj │ │ │ │ └── Resources │ │ │ │ └── Default-568h@2x.png │ │ │ └── MessageBarTest │ │ │ ├── MessageBarTest.sln │ │ │ └── MessageBarTest │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MessageBarSample-Classic.csproj │ │ │ ├── MessageBarSample.csproj │ │ │ └── Resources │ │ │ └── Default-568h@2x.png │ ├── XCardView-1.1.info │ ├── XCardView-1.1.png │ ├── XCardView-1.1 │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ ├── icons │ │ │ │ ├── XCardView_128x128.png │ │ │ │ └── XCardView_512x512.png │ │ │ └── screenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ ├── lib │ │ │ └── ios-unified │ │ │ │ └── XCardView.dll │ │ └── samples │ │ │ ├── XCardViewSample │ │ │ ├── XCardViewSample.sln │ │ │ └── XCardViewSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DemoViewController.cs │ │ │ │ ├── DemoViewController.designer.cs │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Main.storyboard │ │ │ │ ├── Resources │ │ │ │ ├── Images.xcassets │ │ │ │ │ └── AppIcons.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchScreen.xib │ │ │ │ └── XCardViewSample.csproj │ │ │ └── XCardViewSimpleSample │ │ │ ├── XCardViewSimpleSample.sln │ │ │ └── XCardViewSimpleSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DemoViewController.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcons.appiconset │ │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.xib │ │ │ └── XCardViewSimpleSample.csproj │ ├── pdreview-2.0.2.info │ ├── pdreview-2.0.2.png │ ├── pdreview-2.0.2 │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ ├── icons │ │ │ │ ├── pdreview_128x128.png │ │ │ │ └── pdreview_512x512.png │ │ │ └── screenshots │ │ │ │ ├── custom-background.png │ │ │ │ ├── five-stars-scale.png │ │ │ │ ├── six-moustaches-scale.png │ │ │ │ └── ten-tomatoes-scale.png │ │ ├── lib │ │ │ ├── ios-unified │ │ │ │ └── PDRating.dll │ │ │ └── ios │ │ │ │ └── PDRating.dll │ │ └── samples │ │ │ ├── PDRatingSample-Classic │ │ │ ├── PDRatingSample-Classic.sln │ │ │ └── PDRatingSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── CustomBackgroundViewController.cs │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── FiveStarViewController.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── PDRatingSample-Classic.csproj │ │ │ │ ├── PDRatingSample.csproj │ │ │ │ ├── Resources │ │ │ │ ├── Background │ │ │ │ │ └── background.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ ├── Moustaches │ │ │ │ │ ├── chosen.png │ │ │ │ │ ├── empty.png │ │ │ │ │ └── filled.png │ │ │ │ ├── Stars │ │ │ │ │ ├── chosen.png │ │ │ │ │ ├── empty.png │ │ │ │ │ └── filled.png │ │ │ │ └── Tomatoes │ │ │ │ │ ├── chosen.png │ │ │ │ │ ├── empty.png │ │ │ │ │ └── filled.png │ │ │ │ ├── SampleTableViewControllerController.cs │ │ │ │ ├── SixMoustachesViewController.cs │ │ │ │ └── TenMoustachesViewController.cs │ │ │ └── PDRatingSample │ │ │ ├── PDRatingSample.sln │ │ │ └── PDRatingSample │ │ │ ├── AppDelegate.cs │ │ │ ├── CustomBackgroundViewController.cs │ │ │ ├── Default-568h@2x.png │ │ │ ├── FiveStarViewController.cs │ │ │ ├── Info.plist │ │ │ ├── PDRatingSample-Classic.csproj │ │ │ ├── PDRatingSample.csproj │ │ │ ├── Resources │ │ │ ├── Background │ │ │ │ └── background.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── Moustaches │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ ├── Stars │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ └── Tomatoes │ │ │ │ ├── chosen.png │ │ │ │ ├── empty.png │ │ │ │ └── filled.png │ │ │ ├── SampleTableViewControllerController.cs │ │ │ ├── SixMoustachesViewController.cs │ │ │ └── TenMoustachesViewController.cs │ ├── sdwebimage-3.7.1.4.info │ ├── sdwebimage-3.7.1.4.png │ ├── sdwebimage-3.7.1.4 │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ └── icons │ │ │ │ ├── sdwebimage_128x128.png │ │ │ │ └── sdwebimage_512x512.png │ │ ├── lib │ │ │ ├── ios-unified │ │ │ │ └── SDWebImage.dll │ │ │ └── ios │ │ │ │ └── SDWebImage.dll │ │ └── samples │ │ │ ├── SDWebImageMTDialogSample-Classic │ │ │ ├── SDWebImageMTDialogSample-Classic.sln │ │ │ └── SDWebImageMTDialogSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── ImageLoaderElement.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageMTDialogSample-Classic.csproj │ │ │ ├── SDWebImageMTDialogSample │ │ │ ├── SDWebImageMTDialogSample.sln │ │ │ └── SDWebImageMTDialogSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── ImageLoaderElement.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageMTDialogSample.csproj │ │ │ ├── SDWebImageSample-Classic │ │ │ ├── SDWebImageSample-Classic.sln │ │ │ └── SDWebImageSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── DetailViewController.designer.cs │ │ │ │ ├── DetailViewController.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MasterViewController.cs │ │ │ │ ├── MasterViewController.designer.cs │ │ │ │ ├── MasterViewController.xib │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageSample-Classic.csproj │ │ │ ├── SDWebImageSample │ │ │ ├── SDWebImageSample.sln │ │ │ └── SDWebImageSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── DetailViewController.designer.cs │ │ │ │ ├── DetailViewController.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MasterViewController.cs │ │ │ │ ├── MasterViewController.designer.cs │ │ │ │ ├── MasterViewController.xib │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageSample.csproj │ │ │ ├── SDWebImageSimpleSample-Classic │ │ │ ├── SDWebImageSimpleSample-Classic.sln │ │ │ └── SDWebImageSimpleSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ ├── SDWebImageSimpleSample-Classic.csproj │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ └── SDWebImageSimpleSample │ │ │ ├── SDWebImageSimpleSample.sln │ │ │ └── SDWebImageSimpleSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ ├── SDWebImageSimpleSample.csproj │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ ├── sqlcipher-for-xamarin-ios-3.3.1.0.info │ ├── sqlcipher-for-xamarin-ios-3.3.1.0.png │ ├── sqlcipher-for-xamarin-ios-3.3.1.0 │ │ ├── component │ │ │ └── icons │ │ │ │ ├── sqlcipher-for-xamarin-ios_128x128.png │ │ │ │ └── sqlcipher-for-xamarin-ios_512x512.png │ │ └── samples │ │ │ ├── sqlcipher-ios-unified-demo │ │ │ ├── sqlcipher-ios-unified-demo.sln │ │ │ └── sqlcipher-ios-unified-demo │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── demoViewController.cs │ │ │ │ ├── demoViewController.designer.cs │ │ │ │ ├── demoViewController.xib │ │ │ │ └── sqlcipher-ios-unified-demo.csproj │ │ │ └── sqlcipher-monotouch-demo │ │ │ ├── sqlcipher-monotouch-demo.sln │ │ │ └── sqlcipher-monotouch │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── demoViewController.cs │ │ │ ├── demoViewController.designer.cs │ │ │ ├── demoViewController.xib │ │ │ └── sqlcipher-monotouch-demo.csproj │ ├── swtableviewcell-0.3.6.1.info │ ├── swtableviewcell-0.3.6.1.png │ ├── swtableviewcell-0.3.6.1 │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ ├── icons │ │ │ │ ├── swtableviewcell_128x128.png │ │ │ │ └── swtableviewcell_512x512.png │ │ │ └── screenshots │ │ │ │ ├── screenshot2.png │ │ │ │ ├── screenshot3.png │ │ │ │ └── screenshot4.png │ │ ├── lib │ │ │ ├── ios-unified │ │ │ │ └── SWTableViewCell.dll │ │ │ └── ios │ │ │ │ └── SWTableViewCell.dll │ │ └── samples │ │ │ ├── SWTableViewCellSample-classic │ │ │ ├── SWTableViewCellSample-classic.sln │ │ │ └── SWTableViewCellSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainStoryboard.storyboard │ │ │ │ ├── Resources │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── MI.png │ │ │ │ ├── check@2x.png │ │ │ │ ├── clock@2x.png │ │ │ │ ├── cross@2x.png │ │ │ │ ├── list@2x.png │ │ │ │ └── um.png │ │ │ │ ├── SWTableViewCellSample-classic.csproj │ │ │ │ ├── SWTableViewCellSample.csproj │ │ │ │ ├── UMTableViewCell.cs │ │ │ │ ├── UMTableViewCell.designer.cs │ │ │ │ ├── ViewController.cs │ │ │ │ └── ViewController.designer.cs │ │ │ └── SWTableViewCellSample │ │ │ ├── SWTableViewCellSample.sln │ │ │ └── SWTableViewCellSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainStoryboard.storyboard │ │ │ ├── Resources │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── MI.png │ │ │ ├── check@2x.png │ │ │ ├── clock@2x.png │ │ │ ├── cross@2x.png │ │ │ ├── list@2x.png │ │ │ └── um.png │ │ │ ├── SWTableViewCellSample-classic.csproj │ │ │ ├── SWTableViewCellSample.csproj │ │ │ ├── UMTableViewCell.cs │ │ │ ├── UMTableViewCell.designer.cs │ │ │ ├── ViewController.cs │ │ │ └── ViewController.designer.cs │ ├── xamarin.auth-1.2.3.1.info │ ├── xamarin.auth-1.2.3.1.png │ └── xamarin.auth-1.2.3.1 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── xamarin.auth_128x128.png │ │ │ └── xamarin.auth_512x512.png │ │ └── screenshots │ │ │ └── 00.png │ │ ├── docs │ │ ├── xamarin.auth.source │ │ ├── xamarin.auth.tree │ │ └── xamarin.auth.zip │ │ ├── lib │ │ ├── android │ │ │ ├── Xamarin.Auth.Android.dll │ │ │ └── Xamarin.Auth.Android.xml │ │ ├── ios-unified │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ └── Xamarin.Auth.iOS.xml │ │ └── ios │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ └── Xamarin.Auth.iOS.xml │ │ └── samples │ │ ├── Xamarin.Auth.Sample.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── Xamarin.Auth Sample (Android).csproj │ │ └── Xamarin.Auth.Sample.Android.sln │ │ ├── Xamarin.Auth.Sample.iOS-Classic │ │ ├── AppDelegate.cs │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Xamarin.Auth Sample (iOS Classic).csproj │ │ ├── Xamarin.Auth Sample (iOS).csproj │ │ └── Xamarin.Auth.Sample.iOS-Classic.sln │ │ └── Xamarin.Auth.Sample.iOS │ │ ├── AppDelegate.cs │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Xamarin.Auth Sample (iOS Classic).csproj │ │ ├── Xamarin.Auth Sample (iOS).csproj │ │ └── Xamarin.Auth.Sample.iOS.sln ├── Forms │ ├── BeerDrinkin.Forms.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BeerDrinkin.Forms.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ ├── app.config │ │ └── packages.config │ ├── BeerDrinkin.Forms.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── BeerDrinkin.Forms.UWP.csproj │ │ ├── BeerDrinkin.Forms.UWP.nuget.targets │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── project.json │ │ └── project.lock.json │ ├── BeerDrinkin.Forms.iOS │ │ ├── AppDelegate.cs │ │ ├── BeerDrinkin.Forms.iOS.csproj │ │ ├── CustomRenderers │ │ │ └── CellAccessoryRenderer.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── BeerDrinkin.png │ │ │ ├── Icons.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ ├── 100.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 144.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 50.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 72.png │ │ │ │ │ ├── 76.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-Small.png │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ └── LaunchImages.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── tabbar_mybeers.png │ │ │ ├── tabbar_mybeers@2x.png │ │ │ ├── tabbar_mybeers@3x.png │ │ │ ├── tabbar_profile.png │ │ │ ├── tabbar_profile@2x.png │ │ │ ├── tabbar_profile@3x.png │ │ │ ├── tabbar_search.png │ │ │ ├── tabbar_search@2x.png │ │ │ ├── tabbar_search@3x.png │ │ │ ├── tabbar_wishlist.png │ │ │ ├── tabbar_wishlist@2x.png │ │ │ └── tabbar_wishlist@3x.png │ │ ├── app.config │ │ └── packages.config │ └── BeerDrinkin.Forms │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BeerDrinkin.Forms.Core.csproj │ │ ├── BeerDrinkin.Forms.Core.sln │ │ ├── FodyWeavers.xml │ │ ├── Helpers │ │ └── Keys.cs │ │ ├── Interfaces │ │ └── IBeerDrinkinClient.cs │ │ ├── PageModels │ │ ├── BeerDetailsPageModel.cs │ │ ├── DiscoverPageModel.cs │ │ ├── MyBeersPageModel.cs │ │ ├── ProfilePageModel.cs │ │ └── WishListPageModel.cs │ │ ├── Pages │ │ ├── BeerDetailsPage.xaml │ │ ├── BeerDetailsPage.xaml.cs │ │ ├── DiscoverPage.xaml │ │ ├── DiscoverPage.xaml.cs │ │ ├── MyBeersPage.xaml │ │ ├── MyBeersPage.xaml.cs │ │ ├── ProfilePage.xaml │ │ ├── ProfilePage.xaml.cs │ │ ├── TabbedNavigationContainer.cs │ │ ├── WishListPage.xaml │ │ └── WishListPage.xaml.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Services │ │ └── BeerDrinkinClient.cs │ │ ├── Views │ │ ├── NotSearchedView.xaml │ │ └── NotSearchedView.xaml.cs │ │ ├── app.config │ │ └── packages.config └── iOS │ ├── AppDelegate.cs │ ├── AppDelegate.designer.cs │ ├── BeerDrinkin.iOS.csproj │ ├── BeerDrinkin.iOS.csproj.bak │ ├── BeerDrinkin.iOS.sln │ ├── CameraViewController.cs │ ├── CameraViewController.designer.cs │ ├── Custom Controls │ ├── AddNewFollowerButton.designer.cs │ ├── BeerDescriptionHeaderView.cs │ ├── BeerDescriptionHeaderView.designer.cs │ ├── BeerDescriptionHeaderView.xib │ ├── BeerLoadingView.cs │ ├── BeerStatsView.cs │ ├── BeerStatsView.designer.cs │ ├── CheckInBackground.cs │ ├── DescriptionCellHeader.cs │ ├── DescriptionCellHeader.designer.cs │ ├── DiscoverCameraButton.cs │ ├── DiscoverCameraButton.designer.cs │ ├── DiscoverCameraControl.cs │ ├── IntroductionScrollingView.cs │ ├── LogInBox.designer.cs │ ├── PhotoCollectionViewCell.cs │ ├── PhotoCollectionViewCell.designer.cs │ ├── PlaceholderTextView.cs │ ├── PlaceholderTextView.designer.cs │ ├── ProfileHeaderView.cs │ ├── ProfileHeaderView.designer.cs │ ├── ProfileHeaderView.xib │ ├── ScrollingTabView.cs │ ├── SearchBar.cs │ ├── SearchBar.designer.cs │ ├── SearchTableViewCellBackground.cs │ ├── SearchTableViewCellBackground.designer.cs │ ├── SignInBox.designer.cs │ ├── SignUpBox.designer.cs │ ├── TinderBox.designer.cs │ ├── TrendingBeerBackground.cs │ ├── TrendingBeerBackground.designer.cs │ └── bd.pcvd │ ├── DataSources │ ├── BeerDescriptionDataSource.cs │ ├── CheckInDataSource.cs │ ├── DiscoverBeerSearchResultsSource.cs │ └── MyBeersDataSource.cs │ ├── Dependencies │ └── Mindscape.Raygun4Net.Xamarin.iOS.Unified.dll │ ├── DescriptionCellHeader.cs │ ├── DescriptionCellHeader.designer.cs │ ├── Entitlements.plist │ ├── Helpers │ ├── Animator.cs │ ├── AppInsights.cs │ ├── Extensions.cs │ ├── Logger.cs │ ├── SearchHistory.cs │ ├── Style.cs │ └── ViewExtensions.cs │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── Properties │ └── _SettingsStarted.txt │ ├── Resources │ ├── 702-share.png │ ├── 702-share@2x.png │ ├── 702-share@3x.png │ ├── 708-search.png │ ├── 708-search@2x.png │ ├── 708-search@3x.png │ ├── 711-trash.png │ ├── 711-trash@2x.png │ ├── 711-trash@3x.png │ ├── 713-refresh-1.png │ ├── 713-refresh-1@2x.png │ ├── 713-refresh-1@3x.png │ ├── 740-gear.png │ ├── 740-gear@2x.png │ ├── 740-gear@3x.png │ ├── 748-heart.png │ ├── 748-heart@2x.png │ ├── 748-heart@3x.png │ ├── 769-male.png │ ├── 769-male@2x.png │ ├── 769-male@3x.png │ ├── 856-lightning-bolt.png │ ├── 856-lightning-bolt@2x.png │ ├── 856-lightning-bolt@3x.png │ ├── 957-beer-mug.png │ ├── 957-beer-mug@2x.png │ ├── 957-beer-mug@3x.png │ ├── Analytics.png │ ├── ApplePayBTN_32pt__black_logo_@2x.png │ ├── ApplePayBTN_32pt__black_logo_@3x.png │ ├── Arrows-Left-icon.png │ ├── Barcode.png │ ├── BarcodeDark.png │ ├── BeerBottle.png │ ├── BeerBottle_Selected.png │ ├── BeerCellCircle.png │ ├── BeerDrinkin.png │ ├── BeerLight.png │ ├── BeerTap.png │ ├── BeerTap_Selected.png │ ├── BlueTick.png │ ├── Discover.png │ ├── Discover@2x.png │ ├── Discover@3x.png │ ├── Discover_Selected.png │ ├── Entitlements.plist │ ├── Friends.png │ ├── Friends@2x.png │ ├── Friends@3x.png │ ├── Friends_Selected.png │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Introduction_Facebook.png │ ├── Introduction_Map.png │ ├── Introduction_Photos.png │ ├── LaunchScreen.storyboard │ ├── Map.png │ ├── Me.png │ ├── Me@2x.png │ ├── Me@3x.png │ ├── Me_Selected.png │ ├── NavigationBar_Back.png │ ├── NavigationBar_Back@2x.png │ ├── NavigationBar_Back@3x.png │ ├── NavigationBar_More.png │ ├── NavigationBar_More@2x.png │ ├── NavigationBar_More@3x.png │ ├── Patterned Image.png │ ├── ReleaseNotes.html │ ├── ReleaseNotes.md │ ├── ScrollView_BlueLarge.png │ ├── ScrollView_BlueSmall.png │ ├── ScrollView_Green.png │ ├── ScrollView_Purple.png │ ├── Search.png │ ├── Search@2x.png │ ├── Search@3x.png │ ├── Search_Selected.png │ ├── Tick.png │ ├── Tick_White.png │ ├── about_credits.png │ ├── about_facebook.png │ ├── about_heart.png │ ├── about_releaseNotes.png │ ├── about_support.png │ ├── about_twitter.png │ ├── account_settings.png │ ├── account_starBlueEmpty.png │ ├── account_starBlueFull.png │ ├── analytics_bug_blue.png │ ├── analytics_bug_white.png │ ├── analytics_time_blue.png │ ├── analytics_time_white.png │ ├── back.png │ ├── back@2x.png │ ├── back@3x.png │ ├── backArrow.png │ ├── backArrow@2x.png │ ├── backArrow@3x.png │ ├── back_arrow.png │ ├── back_arrow@2x.png │ ├── back_arrow@3x.png │ ├── beerCellDarkGradient.png │ ├── camera-flash.png │ ├── camera-flash@2x.png │ ├── checkin_addLocation.png │ ├── checkin_barcode.png │ ├── checkin_camera.png │ ├── checkin_close.png │ ├── close.png │ ├── default_profile_header.jpeg │ ├── doge.png │ ├── emptyStar.png │ ├── facebook_button.png │ ├── filledStar.png │ ├── goolgeButton.png │ ├── icon_more.png │ ├── icon_more@2x.png │ ├── icon_more@3x.png │ ├── icon_settings.png │ ├── icon_settings@2x.png │ ├── icon_settings@3x.png │ ├── inAppPurhcase_beer.png │ ├── inAppPurhcase_close.png │ ├── inAppPurhcase_heart.png │ ├── inAppPurhcase_tick.png │ ├── intro_location_map.png │ ├── intro_location_map_success.png │ ├── locationPin.png │ ├── mike_james_avatar.png │ ├── profile_headerBackground.png │ ├── quickAction_myBeers.png │ ├── quickAction_profile.png │ ├── quickAction_search.png │ ├── quickAction_wishlist.png │ ├── search_barcode.png │ ├── search_filter.png │ ├── search_filter@2x.png │ ├── search_filter@3x.png │ ├── search_inAppPurcahsePadlock.png │ ├── search_ocr.png │ ├── search_placeholder_beer.png │ ├── settings_about.png │ ├── settings_analytics.png │ ├── settings_feedback.png │ ├── settings_notifications.png │ ├── settings_signIn.png │ ├── settings_twitter.png │ ├── settings_xamarin.png │ ├── starEmpty.png │ ├── starFilled.png │ ├── star_blue_empty.png │ ├── star_blue_empty@2x.png │ ├── star_blue_empty@3x.png │ ├── star_blue_filled.png │ ├── star_blue_filled@2x.png │ ├── star_blue_filled@3x.png │ ├── tabbar_discover.png │ ├── tabbar_discover@2x.png │ ├── tabbar_friends.png │ ├── tabbar_friends@2x.png │ ├── tabbar_friends_selected.png │ ├── tabbar_me.png │ ├── tabbar_me@2x.png │ ├── tabbar_search.png │ └── tabbar_search@2x.png │ ├── SearchViewController.cs │ ├── SearchViewController.designer.cs │ ├── Services │ ├── DeviceInfoService.cs │ └── SpotlightService.cs │ ├── StarRatingTableViewCell.cs │ ├── StarRatingTableViewCell.designer.cs │ ├── Storyboards │ └── Settings.storyboard │ ├── TinderBeerViewController.cs │ ├── TinderBeerViewController.designer.cs │ ├── UITableViewCells │ ├── AboutThisBeerCell.cs │ ├── AboutThisBeerCell.designer.cs │ ├── AddABeerTableViewCell.cs │ ├── AddABeerTableViewCell.designer.cs │ ├── AddBeerBarcodeCell.cs │ ├── AddBeerBarcodeCell.designer.cs │ ├── AddBeerNotesCell.cs │ ├── AddBeerNotesCell.designer.cs │ ├── AddBeerPhotosCell.cs │ ├── AddBeerPhotosCell.designer.cs │ ├── AddBeerRatingCell.cs │ ├── AddBeerRatingCell.designer.cs │ ├── AddBeerSourceTypeCell.cs │ ├── AddBeerSourceTypeCell.designer.cs │ ├── BarcodeSearchTableViewCell.cs │ ├── BarcodeSearchTableViewCell.designer.cs │ ├── BeerDescriptionCell.cs │ ├── BeerDescriptionCell.designer.cs │ ├── BeerDescriptionCheckInCell.cs │ ├── BeerDescriptionCheckInCell.designer.cs │ ├── BeerHeaderCell.cs │ ├── BeerHeaderCell.designer.cs │ ├── BeerHeaderImageCell.cs │ ├── BeerHeaderImageCell.designer.cs │ ├── BreweryMapCell.cs │ ├── BreweryMapCell.designer.cs │ ├── CheckInLocationMapCell.cs │ ├── CheckInLocationMapCell.designer.cs │ ├── Discover │ │ ├── DiscoverBeerResultCell.cs │ │ ├── DiscoverBeerResultCell.designer.cs │ │ ├── DiscoverUsersTableViewCell.cs │ │ └── DiscoverUsersTableViewCell.designer.cs │ ├── InAppPurchaseSearchTableViewCell.cs │ ├── InAppPurchaseSearchTableViewCell.designer.cs │ ├── MyBeersTableViewCell.cs │ ├── MyBeersTableViewCell.designer.cs │ ├── NoRecentSearchesViewCell.cs │ ├── NoRecentSearchesViewCell.designer.cs │ ├── PurchaseTableViewCell.cs │ ├── PurchaseTableViewCell.designer.cs │ ├── RecentSearchesTableViewCell.cs │ ├── RecentSearchesTableViewCell.designer.cs │ ├── SearchBeerTableViewCell.cs │ ├── SearchBeerTableViewCell.designer.cs │ ├── SearchHeaderViewCell.cs │ ├── SearchHeaderViewCell.designer.cs │ ├── SearchHistoryViewCell.cs │ ├── SearchHistoryViewCell.designer.cs │ ├── TrendingBeerCell.cs │ └── TrendingBeerCell.designer.cs │ ├── View Controllers │ ├── AddBeerTableViewController.cs │ ├── AddBeerTableViewController.designer.cs │ ├── BaseViewController.cs │ ├── BeerDescriptionTableView.cs │ ├── BeerDescriptionTableView.designer.cs │ ├── CheckInViewController.cs │ ├── CheckInViewController.designer.cs │ ├── Discover │ │ ├── DiscoverBeerPreviewingDelegate.cs │ │ ├── DiscoverBeersViewController.cs │ │ ├── DiscoverBeersViewController.designer.cs │ │ ├── DiscoverBreweriesViewController.cs │ │ ├── DiscoverBreweriesViewController.designer.cs │ │ ├── DiscoverUsersViewController.cs │ │ ├── DiscoverUsersViewController.designer.cs │ │ ├── DiscoverViewController.cs │ │ └── DiscoverViewController.designer.cs │ ├── FullScreenMapView.cs │ ├── FullScreenMapView.designer.cs │ ├── Misc │ │ ├── TabBarController.cs │ │ └── TabBarController.designer.cs │ ├── MyBeersViewController.cs │ ├── MyBeersViewController.designer.cs │ ├── RateBeerViewController.cs │ ├── RateBeerViewController.designer.cs │ ├── Settings │ │ ├── AboutViewController.cs │ │ ├── AboutViewController.designer.cs │ │ ├── AnalyticsViewController.cs │ │ ├── AnalyticsViewController.designer.cs │ │ ├── SettingsViewController.cs │ │ └── SettingsViewController.designer.cs │ ├── SocialAuthViewController.cs │ ├── SocialAuthViewController.designer.cs │ ├── UserProfile │ │ ├── AccountViewController.cs │ │ └── AccountViewController.designer.cs │ └── Welcome │ │ ├── EnableLocationTrackingViewController.cs │ │ ├── EnableLocationTrackingViewController.designer.cs │ │ ├── InitialLoadingViewController.cs │ │ ├── InitialLoadingViewController.designer.cs │ │ ├── InitialViewController.cs │ │ ├── InitialViewController.designer.cs │ │ ├── navigationController.cs │ │ └── navigationController.designer.cs │ ├── WelcoeViewController.cs │ ├── WelcoeViewController.designer.cs │ ├── app.config │ └── packages.config ├── README.md └── Tests ├── BeerDrinkin.Core.Tests ├── BeerDrinkin.Core.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Search.cs ├── app.config └── packages.config └── BeerDrinkin.iOS.TestCloud ├── AppInitializer.cs ├── BeerDrinkin.iOS.TestCloud.csproj ├── WelcomeTests.cs └── packages.config /.deployment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/.deployment -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/.gitignore -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/App.config -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/BeerDrinkinContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/BeerDrinkinContext.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/AppEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/AppEvent.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Beer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Beer.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Brewery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Brewery.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/CheckIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/CheckIn.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Favourite.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Image.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Rating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Rating.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Style.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/User.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/DataObjects/Wish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/DataObjects/Wish.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/Functions.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/Program.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.DataSourceJobs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.DataSourceJobs/packages.config -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/BeerDrinkin.Web.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/BeerDrinkin.Web.xproj -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Controllers/BeerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Controllers/BeerController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Controllers/BeersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Controllers/BeersController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Controllers/ManageController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/BaseDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/BaseDataObject.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/Beer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/Beer.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/CheckIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/CheckIn.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/Favourite.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/Rating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/Rating.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/DataObjects/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/DataObjects/User.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Models/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Models/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Project_Readme.html -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Services/IEmailSender.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Services/ISmsSender.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Services/MessageServices.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Startup.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/ViewModels/Manage/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/ViewModels/Manage/IndexViewModel.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/AddressItems/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/AddressItems/Create.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/AddressItems/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/AddressItems/Delete.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/AddressItems/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/AddressItems/Details.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/AddressItems/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/AddressItems/Edit.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/AddressItems/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/AddressItems/Index.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beer/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beer/Create.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beer/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beer/Delete.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beer/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beer/Details.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beer/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beer/Edit.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beer/Index.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beers/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beers/Create.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beers/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beers/Delete.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beers/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beers/Details.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beers/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beers/Edit.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Beers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Beers/Index.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Home/Features.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Home/Features.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Web.Debug.config -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Web.Release.config -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/Web.config -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/appsettings.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/bower.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/gulpfile.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/package.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/project.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/project.lock.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/_references.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/animate.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/beerdrinkin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/beerdrinkin.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/font-awesome.min.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/magnific-popup.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/main.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/owl.carousel.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/preset/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/preset/blue.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/preset/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/preset/dark.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/preset/image-bg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/preset/image-bg.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/preset/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/preset/red.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/responsive.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/Azure-AppService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/Azure-AppService.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/Beers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/Beers.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/WishList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/WishList.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/Xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/Xamarin.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/XamarinInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/XamarinInsights.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/XamarinPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/XamarinPlatform.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/XamarinTestCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/XamarinTestCloud.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/azure-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/azure-white.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/azuresearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/azuresearch.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/action-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/action-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/action-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/action-bg2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/apps-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/apps-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/home-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/home-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/home-bg.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/price-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/price-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/price-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/price-bg2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/special-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/special-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/special-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/special-bg2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team-bg2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team1.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team3.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team4.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/team5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/team5.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/testimonial1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/testimonial1.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/testimonial2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/testimonial2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/video-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/video-bg.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/bg/video-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/bg/video-bg2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/breweryDbBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/breweryDbBadge.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/github-logo.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/header.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/home-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/home-bg.jpeg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/ico/favicon.ico -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b6.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/b8.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f6.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/f8.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r6.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/r8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/r8.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t10.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t6.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t8.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/t9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/t9.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw10.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/tw9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/tw9.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w5.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w6.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w7.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/icons/w8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/icons/w8.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/logo-blue.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/logo-red.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/logo.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/machinelearning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/machinelearning.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/mockup.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/os1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/os1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/os2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/os2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen1.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen1.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen2.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen2.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen3.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen3.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen4.jpg -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/screen4.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/special.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/video.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/mockup/whatsit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/mockup/whatsit.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/slider-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/slider-logo.png -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/images/sprites.gif -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/bootstrap.min.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/canvas.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/html5shiv.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/jquery.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/jquery.nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/jquery.nav.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/main.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/preloader.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/respond.min.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/js/wow.min.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/lib/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/lib/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Azure/BeerDrinkin.Web/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkin.Web/wwwroot/web.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/App_Start/Startup.MobileApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/App_Start/Startup.MobileApp.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/App_Start/Startup.Swagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/App_Start/Startup.Swagger.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/ApplicationInsights.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/BeerDrinkin.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/BeerDrinkin.Service.csproj -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/BeerDrinkinContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/BeerDrinkinContext.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Content/Site.css -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Content/bootstrap.css -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/BarcodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/BarcodeController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/BeerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/BeerController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/CheckInController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/CheckInController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/PictureController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/PictureController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/RatingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/RatingController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/SearchController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/UserController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Controllers/WishController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Controllers/WishController.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/AppEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/AppEvent.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/Barcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/Barcode.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/Brewery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/Brewery.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/DeviceInfo.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/Image.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/Style.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/WeatherCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/WeatherCondition.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/DataObjects/Wish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/DataObjects/Wish.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Global.asax -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Global.asax.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Helpers/BlobUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Helpers/BlobUtils.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Helpers/IdentityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Helpers/IdentityHelper.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Migrations/Configuration.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Services/BreweryDBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Services/BreweryDBService.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Startup.cs -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Views/web.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Web.Debug.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Web.Release.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/Web.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/packages.config -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/scripts/ai.0.15.0-build58334.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/scripts/ai.0.15.0-build58334.js -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/scripts/bootstrap.js -------------------------------------------------------------------------------- /Azure/BeerDrinkinService/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Azure/BeerDrinkinService/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /BeerDrinkin.Forms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/BeerDrinkin.Forms.sln -------------------------------------------------------------------------------- /BeerDrinkin.FullBoar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/BeerDrinkin.FullBoar.sln -------------------------------------------------------------------------------- /BeerDrinkin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/BeerDrinkin.sln -------------------------------------------------------------------------------- /BeerDrinkin_Bitrise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/BeerDrinkin_Bitrise.sln -------------------------------------------------------------------------------- /BeerDrinkin_XamarinStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/BeerDrinkin_XamarinStudio.sln -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.AzureClient/AuthHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.AzureClient/AuthHandler.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.AzureClient/AzureClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.AzureClient/AzureClient.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.AzureClient/IAzureClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.AzureClient/IAzureClient.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.AzureClient/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.AzureClient/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.AzureClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.AzureClient/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core.Abstractions/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core.Abstractions/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core.Abstractions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core.Abstractions/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/BeerDrinkin.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/BeerDrinkin.Core.csproj -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/Interfaces/IAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/Interfaces/IAuthentication.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/ViewModels/BeersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/ViewModels/BeersViewModel.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Core/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/AppEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/AppEvent.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/AppFeedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/AppFeedback.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/AppInsightsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/AppInsightsEvent.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Barcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Barcode.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/BaseDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/BaseDataObject.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Beer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Beer.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Brewery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Brewery.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/CheckIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/CheckIn.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/DeviceInfo.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Favourite.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Image.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/PerformanceEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/PerformanceEvent.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Rating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Rating.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Style.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/User.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/WeatherCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/WeatherCondition.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataObjects/Wish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataObjects/Wish.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Abstractions/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Abstractions/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Azure/StoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Azure/StoreManager.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Azure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Azure/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Azure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Azure/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Mock/StoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Mock/StoreManager.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Mock/Stores/BaseStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Mock/Stores/BaseStore.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Mock/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Mock/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.DataStore.Mock/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.DataStore.Mock/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Abstractions/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Abstractions/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/BarcodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/BarcodeService.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/ImageService.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/SearchService.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/TrendsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/TrendsService.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/app.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Services.Azure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Services.Azure/packages.config -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/BeerDrinkin.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/BeerDrinkin.Utils.csproj -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/Helpers/Settings.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/Keys.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/ServiceLocator.cs -------------------------------------------------------------------------------- /ClientSDKs/BeerDrinkin.Utils/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/ClientSDKs/BeerDrinkin.Utils/packages.config -------------------------------------------------------------------------------- /Components/AMViralSwitch-1.0.0.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/AMViralSwitch-1.0.0.0.info -------------------------------------------------------------------------------- /Components/AMViralSwitch-1.0.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/AMViralSwitch-1.0.0.0.png -------------------------------------------------------------------------------- /Components/AMViralSwitch-1.0.0.0/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/AMViralSwitch-1.0.0.0/component/Details.md -------------------------------------------------------------------------------- /Components/AMViralSwitch-1.0.0.0/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/AMViralSwitch-1.0.0.0/component/License.md -------------------------------------------------------------------------------- /Components/AMViralSwitch-1.0.0.0/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/AMViralSwitch-1.0.0.0/component/Manifest.xml -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7.info -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7.png -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7/component/Details.md -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7/component/License.md -------------------------------------------------------------------------------- /Components/Facebook.Pop-1.0.7/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/Facebook.Pop-1.0.7/component/Manifest.xml -------------------------------------------------------------------------------- /Components/RZTransitions-1.2.0.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/RZTransitions-1.2.0.0.info -------------------------------------------------------------------------------- /Components/RZTransitions-1.2.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/RZTransitions-1.2.0.0.png -------------------------------------------------------------------------------- /Components/RZTransitions-1.2.0.0/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/RZTransitions-1.2.0.0/component/Details.md -------------------------------------------------------------------------------- /Components/RZTransitions-1.2.0.0/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/RZTransitions-1.2.0.0/component/License.md -------------------------------------------------------------------------------- /Components/RZTransitions-1.2.0.0/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/RZTransitions-1.2.0.0/component/Manifest.xml -------------------------------------------------------------------------------- /Components/ViewShaker-1.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1.info -------------------------------------------------------------------------------- /Components/ViewShaker-1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1.png -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/component/Details.md -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/component/License.md -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/component/Manifest.xml -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/lib/ios-unified/ViewShaker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/lib/ios-unified/ViewShaker.dll -------------------------------------------------------------------------------- /Components/ViewShaker-1.1/samples/Sample/Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/ViewShaker-1.1/samples/Sample/Sample.sln -------------------------------------------------------------------------------- /Components/XCardView-1.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1.info -------------------------------------------------------------------------------- /Components/XCardView-1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1.png -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/Details.md -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/License.md -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/Manifest.xml -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/screenshots/1.png -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/screenshots/2.png -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/screenshots/3.png -------------------------------------------------------------------------------- /Components/XCardView-1.1/component/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/component/screenshots/4.png -------------------------------------------------------------------------------- /Components/XCardView-1.1/lib/ios-unified/XCardView.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/XCardView-1.1/lib/ios-unified/XCardView.dll -------------------------------------------------------------------------------- /Components/calabash-16.2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2.info -------------------------------------------------------------------------------- /Components/calabash-16.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2.png -------------------------------------------------------------------------------- /Components/calabash-16.2/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/component/Details.md -------------------------------------------------------------------------------- /Components/calabash-16.2/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/calabash-16.2/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/component/License.md -------------------------------------------------------------------------------- /Components/calabash-16.2/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/component/Manifest.xml -------------------------------------------------------------------------------- /Components/calabash-16.2/lib/ios-unified/Calabash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/lib/ios-unified/Calabash.dll -------------------------------------------------------------------------------- /Components/calabash-16.2/lib/ios/Calabash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/calabash-16.2/lib/ios/Calabash.dll -------------------------------------------------------------------------------- /Components/judopay-xamarin-sdk-2.3.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/judopay-xamarin-sdk-2.3.0.info -------------------------------------------------------------------------------- /Components/judopay-xamarin-sdk-2.3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/judopay-xamarin-sdk-2.3.0.png -------------------------------------------------------------------------------- /Components/judopay-xamarin-sdk-2.3.0/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/judopay-xamarin-sdk-2.3.0/component/Details.md -------------------------------------------------------------------------------- /Components/judopay-xamarin-sdk-2.3.0/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/judopay-xamarin-sdk-2.3.0/component/License.md -------------------------------------------------------------------------------- /Components/pdreview-2.0.2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2.info -------------------------------------------------------------------------------- /Components/pdreview-2.0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2.png -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/component/Details.md -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/component/License.md -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/component/Manifest.xml -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/lib/ios-unified/PDRating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/lib/ios-unified/PDRating.dll -------------------------------------------------------------------------------- /Components/pdreview-2.0.2/lib/ios/PDRating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/pdreview-2.0.2/lib/ios/PDRating.dll -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4.info -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4.png -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4/component/Details.md -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4/component/GettingStarted.md -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4/component/License.md -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4/component/Manifest.xml -------------------------------------------------------------------------------- /Components/sdwebimage-3.7.1.4/lib/ios/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sdwebimage-3.7.1.4/lib/ios/SDWebImage.dll -------------------------------------------------------------------------------- /Components/sqlcipher-for-xamarin-ios-3.3.1.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sqlcipher-for-xamarin-ios-3.3.1.0.info -------------------------------------------------------------------------------- /Components/sqlcipher-for-xamarin-ios-3.3.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/sqlcipher-for-xamarin-ios-3.3.1.0.png -------------------------------------------------------------------------------- /Components/swtableviewcell-0.3.6.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/swtableviewcell-0.3.6.1.info -------------------------------------------------------------------------------- /Components/swtableviewcell-0.3.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/swtableviewcell-0.3.6.1.png -------------------------------------------------------------------------------- /Components/swtableviewcell-0.3.6.1/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/swtableviewcell-0.3.6.1/component/Details.md -------------------------------------------------------------------------------- /Components/swtableviewcell-0.3.6.1/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/swtableviewcell-0.3.6.1/component/License.md -------------------------------------------------------------------------------- /Components/swtableviewcell-0.3.6.1/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/swtableviewcell-0.3.6.1/component/Manifest.xml -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1.info -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1.png -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/component/Details.md -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/component/License.md -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/component/Manifest.xml -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.source -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.tree -------------------------------------------------------------------------------- /Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.auth-1.2.3.1/docs/xamarin.auth.zip -------------------------------------------------------------------------------- /Components/xamarin.inapppurchase-2.8.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.inapppurchase-2.8.info -------------------------------------------------------------------------------- /Components/xamarin.inapppurchase-2.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.inapppurchase-2.8.png -------------------------------------------------------------------------------- /Components/xamarin.inapppurchase-2.8/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.inapppurchase-2.8/component/Details.md -------------------------------------------------------------------------------- /Components/xamarin.inapppurchase-2.8/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/xamarin.inapppurchase-2.8/component/License.md -------------------------------------------------------------------------------- /Components/zxing.net.mobile-1.5.1.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/zxing.net.mobile-1.5.1.0.info -------------------------------------------------------------------------------- /Components/zxing.net.mobile-1.5.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/zxing.net.mobile-1.5.1.0.png -------------------------------------------------------------------------------- /Components/zxing.net.mobile-1.5.1.0/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/zxing.net.mobile-1.5.1.0/component/Details.md -------------------------------------------------------------------------------- /Components/zxing.net.mobile-1.5.1.0/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Components/zxing.net.mobile-1.5.1.0/component/License.md -------------------------------------------------------------------------------- /Design/Color Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Design/Color Palette.png -------------------------------------------------------------------------------- /Design/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Design/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/LICENSE -------------------------------------------------------------------------------- /Misc/UK Beers.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/UK Beers.xlsx -------------------------------------------------------------------------------- /Misc/Web/css-theme/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css-theme/animate.min.css -------------------------------------------------------------------------------- /Misc/Web/css-theme/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css-theme/blog.css -------------------------------------------------------------------------------- /Misc/Web/css-theme/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css-theme/font-awesome.min.css -------------------------------------------------------------------------------- /Misc/Web/css-theme/nivo-lightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css-theme/nivo-lightbox.min.css -------------------------------------------------------------------------------- /Misc/Web/css-theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css-theme/theme.css -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap.css -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap.css.map -------------------------------------------------------------------------------- /Misc/Web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/css/bootstrap.min.css -------------------------------------------------------------------------------- /Misc/Web/fonts-theme/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts-theme/FontAwesome.otf -------------------------------------------------------------------------------- /Misc/Web/fonts-theme/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts-theme/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Misc/Web/fonts-theme/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts-theme/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Misc/Web/fonts-theme/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts-theme/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Misc/Web/fonts-theme/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts-theme/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Misc/Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Misc/Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Misc/Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Misc/Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Misc/Web/images/Facebook Avatar (Retina).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/Facebook Avatar (Retina).png -------------------------------------------------------------------------------- /Misc/Web/images/Facebook Cover (Retina).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/Facebook Cover (Retina).png -------------------------------------------------------------------------------- /Misc/Web/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/background.jpg -------------------------------------------------------------------------------- /Misc/Web/images/blog/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/blog/avatar-2.jpg -------------------------------------------------------------------------------- /Misc/Web/images/blog/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/blog/avatar-3.jpg -------------------------------------------------------------------------------- /Misc/Web/images/blog/mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/blog/mac.jpg -------------------------------------------------------------------------------- /Misc/Web/images/blog/office-people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/blog/office-people.jpg -------------------------------------------------------------------------------- /Misc/Web/images/blog/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/blog/office.jpg -------------------------------------------------------------------------------- /Misc/Web/images/browser-slider/652x340.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/browser-slider/652x340.gif -------------------------------------------------------------------------------- /Misc/Web/images/browser-slider/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/browser-slider/browser.png -------------------------------------------------------------------------------- /Misc/Web/images/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/devices.png -------------------------------------------------------------------------------- /Misc/Web/images/features/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/features/android.png -------------------------------------------------------------------------------- /Misc/Web/images/features/favoriteBeers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/features/favoriteBeers.png -------------------------------------------------------------------------------- /Misc/Web/images/features/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/features/offline.png -------------------------------------------------------------------------------- /Misc/Web/images/features/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/features/social.png -------------------------------------------------------------------------------- /Misc/Web/images/imac-slider/514x275.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/imac-slider/514x275.gif -------------------------------------------------------------------------------- /Misc/Web/images/imac-slider/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/imac-slider/imac.png -------------------------------------------------------------------------------- /Misc/Web/images/iphone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/iphone-bg.png -------------------------------------------------------------------------------- /Misc/Web/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/iphone.png -------------------------------------------------------------------------------- /Misc/Web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/logo.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/Thumbs.db -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/close.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/close@2x.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/loading.gif -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/loading@2x.gif -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/next.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/next@2x.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/prev.png -------------------------------------------------------------------------------- /Misc/Web/images/plugin-images/prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/plugin-images/prev@2x.png -------------------------------------------------------------------------------- /Misc/Web/images/portfolio/1280x800.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/portfolio/1280x800.gif -------------------------------------------------------------------------------- /Misc/Web/images/portfolio/400x300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/portfolio/400x300.gif -------------------------------------------------------------------------------- /Misc/Web/images/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/team/team-1.jpg -------------------------------------------------------------------------------- /Misc/Web/images/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/team/team-2.jpg -------------------------------------------------------------------------------- /Misc/Web/images/team/team-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/images/team/team-3.png -------------------------------------------------------------------------------- /Misc/Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/index.html -------------------------------------------------------------------------------- /Misc/Web/js-theme/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js-theme/call.js -------------------------------------------------------------------------------- /Misc/Web/js-theme/jquery.bxslider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js-theme/jquery.bxslider.min.js -------------------------------------------------------------------------------- /Misc/Web/js-theme/jquery.mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js-theme/jquery.mixitup.min.js -------------------------------------------------------------------------------- /Misc/Web/js-theme/nivo-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js-theme/nivo-lightbox.min.js -------------------------------------------------------------------------------- /Misc/Web/js-theme/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js-theme/wow.min.js -------------------------------------------------------------------------------- /Misc/Web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Misc/Web/js/bootstrap.min.js -------------------------------------------------------------------------------- /MobileApps/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/.nuget/packages.config -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Helpers/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Helpers/Strings.cs -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Models/ImageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Models/ImageModel.cs -------------------------------------------------------------------------------- /MobileApps/CameraViewController/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/MyClass.cs -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Resources/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Resources/closeButton.png -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Resources/flashOnIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Resources/flashOnIcon.png -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Resources/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Resources/placeholder.png -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Resources/swapButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Resources/swapButton.png -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Views/CameraView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Views/CameraView.cs -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Views/CropOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Views/CropOverlay.cs -------------------------------------------------------------------------------- /MobileApps/CameraViewController/Views/PermissionsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/CameraViewController/Views/PermissionsView.cs -------------------------------------------------------------------------------- /MobileApps/Components/MessageBar-ios-1.1.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/MessageBar-ios-1.1.1.info -------------------------------------------------------------------------------- /MobileApps/Components/MessageBar-ios-1.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/MessageBar-ios-1.1.1.png -------------------------------------------------------------------------------- /MobileApps/Components/XCardView-1.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/XCardView-1.1.info -------------------------------------------------------------------------------- /MobileApps/Components/XCardView-1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/XCardView-1.1.png -------------------------------------------------------------------------------- /MobileApps/Components/XCardView-1.1/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/XCardView-1.1/component/Details.md -------------------------------------------------------------------------------- /MobileApps/Components/XCardView-1.1/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/XCardView-1.1/component/License.md -------------------------------------------------------------------------------- /MobileApps/Components/pdreview-2.0.2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/pdreview-2.0.2.info -------------------------------------------------------------------------------- /MobileApps/Components/pdreview-2.0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/pdreview-2.0.2.png -------------------------------------------------------------------------------- /MobileApps/Components/pdreview-2.0.2/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/pdreview-2.0.2/component/Details.md -------------------------------------------------------------------------------- /MobileApps/Components/pdreview-2.0.2/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/pdreview-2.0.2/component/License.md -------------------------------------------------------------------------------- /MobileApps/Components/pdreview-2.0.2/lib/ios/PDRating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/pdreview-2.0.2/lib/ios/PDRating.dll -------------------------------------------------------------------------------- /MobileApps/Components/sdwebimage-3.7.1.4.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/sdwebimage-3.7.1.4.info -------------------------------------------------------------------------------- /MobileApps/Components/sdwebimage-3.7.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/sdwebimage-3.7.1.4.png -------------------------------------------------------------------------------- /MobileApps/Components/swtableviewcell-0.3.6.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/swtableviewcell-0.3.6.1.info -------------------------------------------------------------------------------- /MobileApps/Components/swtableviewcell-0.3.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/swtableviewcell-0.3.6.1.png -------------------------------------------------------------------------------- /MobileApps/Components/xamarin.auth-1.2.3.1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/xamarin.auth-1.2.3.1.info -------------------------------------------------------------------------------- /MobileApps/Components/xamarin.auth-1.2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Components/xamarin.auth-1.2.3.1.png -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.Droid/MainActivity.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.Droid/app.config -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.Droid/packages.config -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/App.xaml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/App.xaml.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/MainPage.xaml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/project.json -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.UWP/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.UWP/project.lock.json -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/Entitlements.plist -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/Info.plist -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/Main.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/app.config -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms.iOS/packages.config -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/App.xaml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/App.xaml.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/FodyWeavers.xml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/Helpers/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/Helpers/Keys.cs -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/Pages/MyBeersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/Pages/MyBeersPage.xaml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/Pages/ProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/Pages/ProfilePage.xaml -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/app.config -------------------------------------------------------------------------------- /MobileApps/Forms/BeerDrinkin.Forms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/Forms/BeerDrinkin.Forms/packages.config -------------------------------------------------------------------------------- /MobileApps/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MobileApps/iOS/AppDelegate.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/AppDelegate.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/BeerDrinkin.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/BeerDrinkin.iOS.csproj -------------------------------------------------------------------------------- /MobileApps/iOS/BeerDrinkin.iOS.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/BeerDrinkin.iOS.csproj.bak -------------------------------------------------------------------------------- /MobileApps/iOS/BeerDrinkin.iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/BeerDrinkin.iOS.sln -------------------------------------------------------------------------------- /MobileApps/iOS/CameraViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/CameraViewController.cs -------------------------------------------------------------------------------- /MobileApps/iOS/CameraViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/CameraViewController.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/BeerLoadingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/BeerLoadingView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/BeerStatsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/BeerStatsView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/BeerStatsView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/BeerStatsView.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/CheckInBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/CheckInBackground.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/DescriptionCellHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/DescriptionCellHeader.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/DiscoverCameraButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/DiscoverCameraButton.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/LogInBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/LogInBox.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/PlaceholderTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/PlaceholderTextView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/ProfileHeaderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/ProfileHeaderView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/ProfileHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/ProfileHeaderView.xib -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/ScrollingTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/ScrollingTabView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/SearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/SearchBar.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/SearchBar.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/SearchBar.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/SignInBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/SignInBox.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/SignUpBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/SignUpBox.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/TinderBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/TinderBox.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Custom Controls/bd.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Custom Controls/bd.pcvd -------------------------------------------------------------------------------- /MobileApps/iOS/DataSources/CheckInDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/DataSources/CheckInDataSource.cs -------------------------------------------------------------------------------- /MobileApps/iOS/DataSources/MyBeersDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/DataSources/MyBeersDataSource.cs -------------------------------------------------------------------------------- /MobileApps/iOS/DescriptionCellHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/DescriptionCellHeader.cs -------------------------------------------------------------------------------- /MobileApps/iOS/DescriptionCellHeader.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/DescriptionCellHeader.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Entitlements.plist -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/Animator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/Animator.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/AppInsights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/AppInsights.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/Extensions.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/Logger.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/SearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/SearchHistory.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/Style.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Info.plist -------------------------------------------------------------------------------- /MobileApps/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Main.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Main.storyboard -------------------------------------------------------------------------------- /MobileApps/iOS/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/702-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/702-share.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/702-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/702-share@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/702-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/702-share@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/708-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/708-search.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/708-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/708-search@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/708-search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/708-search@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/711-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/711-trash.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/711-trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/711-trash@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/711-trash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/711-trash@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/713-refresh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/713-refresh-1.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/713-refresh-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/713-refresh-1@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/713-refresh-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/713-refresh-1@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/740-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/740-gear.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/740-gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/740-gear@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/740-gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/740-gear@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/748-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/748-heart.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/748-heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/748-heart@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/748-heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/748-heart@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/769-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/769-male.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/769-male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/769-male@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/769-male@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/769-male@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/856-lightning-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/856-lightning-bolt.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/856-lightning-bolt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/856-lightning-bolt@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/856-lightning-bolt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/856-lightning-bolt@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/957-beer-mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/957-beer-mug.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/957-beer-mug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/957-beer-mug@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/957-beer-mug@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/957-beer-mug@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Analytics.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Arrows-Left-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Arrows-Left-icon.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Barcode.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BarcodeDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BarcodeDark.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerBottle.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerBottle_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerBottle_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerCellCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerCellCircle.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerDrinkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerDrinkin.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerLight.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerTap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerTap.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BeerTap_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BeerTap_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/BlueTick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/BlueTick.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Discover.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Discover@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Discover@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Discover_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Discover_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Entitlements.plist -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Friends.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Friends@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Friends@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Friends@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Friends@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Friends_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Friends_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ITunesArtwork -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ITunesArtwork@2x -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Introduction_Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Introduction_Facebook.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Introduction_Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Introduction_Map.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Introduction_Photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Introduction_Photos.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Map.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Me.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Me@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Me@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Me_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Me_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_Back.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_Back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_Back@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_Back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_Back@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_More.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_More@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/NavigationBar_More@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/NavigationBar_More@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Patterned Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Patterned Image.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ReleaseNotes.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ReleaseNotes.md -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ScrollView_BlueLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ScrollView_BlueLarge.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ScrollView_BlueSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ScrollView_BlueSmall.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ScrollView_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ScrollView_Green.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/ScrollView_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/ScrollView_Purple.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Search.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Search@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Search@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Search_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Search_Selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Tick.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/Tick_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/Tick_White.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_credits.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_facebook.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_heart.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_releaseNotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_releaseNotes.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_support.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/about_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/about_twitter.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/account_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/account_settings.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/account_starBlueEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/account_starBlueEmpty.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/account_starBlueFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/account_starBlueFull.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/analytics_bug_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/analytics_bug_blue.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/analytics_bug_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/analytics_bug_white.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/analytics_time_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/analytics_time_blue.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/analytics_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/analytics_time_white.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/backArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/backArrow.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/backArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/backArrow@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/backArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/backArrow@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back_arrow.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back_arrow@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/back_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/back_arrow@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/beerCellDarkGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/beerCellDarkGradient.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/camera-flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/camera-flash.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/camera-flash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/camera-flash@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/checkin_addLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/checkin_addLocation.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/checkin_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/checkin_barcode.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/checkin_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/checkin_camera.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/checkin_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/checkin_close.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/close.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/default_profile_header.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/default_profile_header.jpeg -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/doge.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/emptyStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/emptyStar.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/facebook_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/facebook_button.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/filledStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/filledStar.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/goolgeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/goolgeButton.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_more.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_more@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_more@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_settings.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_settings@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/icon_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/icon_settings@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/inAppPurhcase_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/inAppPurhcase_beer.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/inAppPurhcase_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/inAppPurhcase_close.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/inAppPurhcase_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/inAppPurhcase_heart.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/inAppPurhcase_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/inAppPurhcase_tick.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/intro_location_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/intro_location_map.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/locationPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/locationPin.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/mike_james_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/mike_james_avatar.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/profile_headerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/profile_headerBackground.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/quickAction_myBeers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/quickAction_myBeers.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/quickAction_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/quickAction_profile.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/quickAction_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/quickAction_search.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/quickAction_wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/quickAction_wishlist.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_barcode.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_filter.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_filter@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_filter@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_ocr.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/search_placeholder_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/search_placeholder_beer.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_about.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_analytics.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_feedback.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_notifications.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_signIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_signIn.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_twitter.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/settings_xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/settings_xamarin.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/starEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/starEmpty.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/starFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/starFilled.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_empty.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_empty@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_empty@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_filled.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_filled@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/star_blue_filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/star_blue_filled@3x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_discover.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_discover@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_friends.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_friends@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_friends@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_friends_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_friends_selected.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_me.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_me@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_search.png -------------------------------------------------------------------------------- /MobileApps/iOS/Resources/tabbar_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Resources/tabbar_search@2x.png -------------------------------------------------------------------------------- /MobileApps/iOS/SearchViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/SearchViewController.cs -------------------------------------------------------------------------------- /MobileApps/iOS/SearchViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/SearchViewController.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Services/DeviceInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Services/DeviceInfoService.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Services/SpotlightService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Services/SpotlightService.cs -------------------------------------------------------------------------------- /MobileApps/iOS/StarRatingTableViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/StarRatingTableViewCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/StarRatingTableViewCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/StarRatingTableViewCell.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/Storyboards/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/Storyboards/Settings.storyboard -------------------------------------------------------------------------------- /MobileApps/iOS/TinderBeerViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/TinderBeerViewController.cs -------------------------------------------------------------------------------- /MobileApps/iOS/TinderBeerViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/TinderBeerViewController.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/AboutThisBeerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/AboutThisBeerCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/AddBeerBarcodeCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/AddBeerBarcodeCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/AddBeerNotesCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/AddBeerNotesCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/AddBeerPhotosCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/AddBeerPhotosCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/AddBeerRatingCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/AddBeerRatingCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/BeerDescriptionCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/BeerDescriptionCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/BeerHeaderCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/BeerHeaderCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/BeerHeaderImageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/BeerHeaderImageCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/BreweryMapCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/BreweryMapCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/UITableViewCells/TrendingBeerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/UITableViewCells/TrendingBeerCell.cs -------------------------------------------------------------------------------- /MobileApps/iOS/View Controllers/BaseViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/View Controllers/BaseViewController.cs -------------------------------------------------------------------------------- /MobileApps/iOS/View Controllers/FullScreenMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/View Controllers/FullScreenMapView.cs -------------------------------------------------------------------------------- /MobileApps/iOS/WelcoeViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/WelcoeViewController.cs -------------------------------------------------------------------------------- /MobileApps/iOS/WelcoeViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/WelcoeViewController.designer.cs -------------------------------------------------------------------------------- /MobileApps/iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/app.config -------------------------------------------------------------------------------- /MobileApps/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/MobileApps/iOS/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/README.md -------------------------------------------------------------------------------- /Tests/BeerDrinkin.Core.Tests/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.Core.Tests/Search.cs -------------------------------------------------------------------------------- /Tests/BeerDrinkin.Core.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.Core.Tests/app.config -------------------------------------------------------------------------------- /Tests/BeerDrinkin.Core.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.Core.Tests/packages.config -------------------------------------------------------------------------------- /Tests/BeerDrinkin.iOS.TestCloud/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.iOS.TestCloud/AppInitializer.cs -------------------------------------------------------------------------------- /Tests/BeerDrinkin.iOS.TestCloud/WelcomeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.iOS.TestCloud/WelcomeTests.cs -------------------------------------------------------------------------------- /Tests/BeerDrinkin.iOS.TestCloud/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeCodesDotNET/Beer-Drinkin/HEAD/Tests/BeerDrinkin.iOS.TestCloud/packages.config --------------------------------------------------------------------------------