├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── ApplicationIcon.png ├── LICENSE ├── README.md ├── Screenshot0.png ├── Screenshot1.png ├── Screenshot2.png ├── Screenshot3.png ├── Screenshot4.png ├── Screenshot5.png ├── Screenshot6.png ├── TinderApp.Common ├── CommonAssemblyInfo.cs ├── Constants.cs ├── Properties │ └── AssemblyInfo.cs └── TinderApp.Common.csproj ├── TinderApp.Library ├── ConsentManager.cs ├── Controls │ ├── CustomPhoneApplicationFrame.cs │ └── IApp.cs ├── Converters │ └── BoolToVisibilityConverter.cs ├── DispatcherExtensions.cs ├── LocationManager.cs ├── MVVM │ ├── ObservableObject.cs │ ├── RelayCommand.cs │ └── TopBarViewModel.cs ├── Minimods │ └── Minimod.PrettyDateAndTime.Generated.cs ├── Properties │ └── AssemblyInfo.cs ├── TinderApp.Library.csproj ├── TinderSession.cs ├── TombstoneManager.cs ├── Utility.cs ├── ViewModels │ ├── Conversation │ │ ├── ConversationMessageViewModel.cs │ │ ├── ConversationViewModel.cs │ │ └── MessageTypeItemSelector.cs │ ├── CustomPhoneApplicationFrameViewModel.cs │ ├── FacebookAlbumPhotoViewModel.cs │ ├── FacebookAlbumsViewModel.cs │ ├── MatchViewModel.cs │ ├── MatchesViewModel.cs │ ├── UserInfoViewModel.cs │ └── UserRecommendationsViewModel.cs └── packages.config ├── TinderApp.Models ├── AddPhotoRequest.cs ├── AuthRequest.cs ├── AuthResponse.cs ├── BioUpdate.cs ├── Facebook │ ├── FacebookSessionInfo.cs │ ├── FacebookUser.cs │ ├── FacebookUserResponse.cs │ ├── PhotoResponse.cs │ └── PhotosResponse.cs ├── Globals.cs ├── LikeResponse.cs ├── Location.cs ├── Match.cs ├── Message.cs ├── OutgoingNewMessage.cs ├── Person.cs ├── Photo.cs ├── PingRequest.cs ├── Position.cs ├── ProcessedFile.cs ├── Profile.cs ├── Properties │ └── AssemblyInfo.cs ├── RecommendationsRequest.cs ├── SettingsUpdate.cs ├── TinderApp.Models.csproj ├── TombstoneData.cs ├── UpdatesRequest.cs ├── UpdatesResponse.cs ├── User.cs ├── UserResponse.cs ├── UserResult.cs ├── Versions.cs └── packages.config ├── TinderApp.TinderApi ├── Client.cs ├── Constants.cs ├── ContentClient.cs ├── Facebook │ └── FacebookClient.cs ├── Properties │ └── AssemblyInfo.cs ├── TinderApp.TinderApi.csproj └── packages.config ├── TinderApp.Website ├── Tinder.zip ├── images │ ├── branding │ │ ├── dummylogo.png │ │ ├── favicon.ico │ │ └── headerlogo.png │ ├── contentback.jpg │ ├── download.png │ ├── headerglow.png │ ├── listcircle.png │ ├── map.png │ ├── phonebackground.png │ ├── route.png │ ├── screenshots │ │ ├── screenshot0.jpg │ │ ├── screenshot1.jpg │ │ └── screenshot2.jpg │ ├── search.png │ ├── stats.png │ └── world.png ├── index.html ├── javascripts │ ├── jquery.js │ ├── jsLoader.js │ ├── plugins │ │ ├── easySlider1.7.js │ │ ├── easySlider1.7.min.js │ │ ├── jquery.tweet.js │ │ └── jquery.tweet.min.js │ └── tabs.js ├── stylesheets │ ├── base.css │ ├── base.min.css │ ├── layout.css │ └── skeleton.css └── website.publishproj ├── TinderApp.sln ├── TinderApp ├── App.xaml ├── App.xaml.cs ├── ApplicationIcon.png ├── Assets │ ├── ApplicationIcon.png │ ├── Images │ │ ├── Background.png │ │ ├── Chat.png │ │ ├── Chats.png │ │ ├── Heart.png │ │ ├── Like.png │ │ ├── Map_Pin.png │ │ ├── Menu.png │ │ ├── Messages.png │ │ ├── Pass.png │ │ ├── SendIcon.png │ │ ├── SmallTopLogo.jpg │ │ ├── Spanner.png │ │ ├── active_404.png │ │ ├── friends.png │ │ ├── i.png │ │ ├── interests.png │ │ ├── photos.png │ │ ├── pressed_404.png │ │ └── status.png │ ├── Tiles │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ └── Tinder.png ├── ConversationPage.xaml ├── ConversationPage.xaml.cs ├── EditProfile.xaml ├── EditProfile.xaml.cs ├── FacebookAlbumsPage.xaml ├── FacebookAlbumsPage.xaml.cs ├── InitialPage.xaml ├── InitialPage.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── ProfileInfoPage.xaml ├── ProfileInfoPage.xaml.cs ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── RightSideBarControl.xaml ├── RightSideBarControl.xaml.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── TinderApp.csproj └── packages.config ├── TinderBG.png └── lib └── RCWP └── 2013.3.1121.3040 ├── ARM ├── Microsoft.Threading.Tasks.Extensions.Phone.dll ├── Microsoft.Threading.Tasks.Extensions.dll ├── Microsoft.Threading.Tasks.dll ├── Microsoft.WindowsAzure.Mobile.Ext.dll ├── Microsoft.WindowsAzure.Mobile.UI.dll ├── Microsoft.WindowsAzure.Mobile.dll ├── Newtonsoft.Json.dll ├── System.Net.Http.Extensions.dll ├── System.Net.Http.Primitives.dll ├── System.Net.Http.dll ├── Telerik.Everlive.Sdk.dll ├── Telerik.Storage.Extensions.dll ├── Telerik.Storage_WP.dll ├── Telerik.Storage_WP.winmd ├── Telerik.Windows.Controls.Cloud.dll ├── Telerik.Windows.Controls.Cloud.xml ├── Telerik.Windows.Core.Cloud.Azure.dll ├── Telerik.Windows.Core.Cloud.Azure.xml ├── Telerik.Windows.Core.Cloud.Everlive.dll ├── Telerik.Windows.Core.Cloud.Everlive.xml ├── Telerik.Windows.Core.Cloud.dll ├── Telerik.Windows.Core.Cloud.xml ├── Telerik.Windows.Synchronization.Cloud.Azure.dll ├── Telerik.Windows.Synchronization.Cloud.Azure.xml ├── Telerik.Windows.Synchronization.Cloud.Everlive.dll └── Telerik.Windows.Synchronization.Cloud.Everlive.xml ├── Telerik.Windows.BackgroundAgentTools.dll ├── Telerik.Windows.BackgroundAgentTools.xml ├── Telerik.Windows.Behaviors.dll ├── Telerik.Windows.Behaviors.xml ├── Telerik.Windows.Controls.Chart.dll ├── Telerik.Windows.Controls.Chart.xml ├── Telerik.Windows.Controls.Data.dll ├── Telerik.Windows.Controls.Data.xml ├── Telerik.Windows.Controls.DataVisualization.dll ├── Telerik.Windows.Controls.DataVisualization.xml ├── Telerik.Windows.Controls.ImageEditor.dll ├── Telerik.Windows.Controls.ImageEditor.xml ├── Telerik.Windows.Controls.Input.dll ├── Telerik.Windows.Controls.Input.xml ├── Telerik.Windows.Controls.Primitives.dll ├── Telerik.Windows.Controls.Primitives.xml ├── Telerik.Windows.Core.dll ├── Telerik.Windows.Core.xml ├── Telerik.Windows.Data.dll ├── Telerik.Windows.Data.xml ├── de-DE ├── Telerik.Windows.Controls.ImageEditor.resources.dll ├── Telerik.Windows.Controls.Input.resources.dll └── Telerik.Windows.Controls.Primitives.resources.dll ├── design ├── Telerik.Windows.Controls.Chart.Expression.Design.dll ├── Telerik.Windows.Controls.Chart.VisualStudio.Design.5.0.dll ├── Telerik.Windows.Controls.Data.Expression.Design.dll ├── Telerik.Windows.Controls.Data.VisualStudio.Design.5.0.dll ├── Telerik.Windows.Controls.DataVisualization.Expression.Design.dll ├── Telerik.Windows.Controls.DataVisualization.VisualStudio.Design.5.0.dll ├── Telerik.Windows.Controls.Input.Expression.Design.dll ├── Telerik.Windows.Controls.Input.VisualStudio.Design.5.0.dll ├── Telerik.Windows.Controls.Primitives.Expression.Design.dll └── Telerik.Windows.Controls.Primitives.VisualStudio.Design.5.0.dll ├── distribution.xml ├── fr-FR ├── Telerik.Windows.Controls.ImageEditor.resources.dll ├── Telerik.Windows.Controls.Input.resources.dll └── Telerik.Windows.Controls.Primitives.resources.dll ├── it-IT ├── Telerik.Windows.Controls.ImageEditor.resources.dll ├── Telerik.Windows.Controls.Input.resources.dll └── Telerik.Windows.Controls.Primitives.resources.dll └── x86 ├── Microsoft.Threading.Tasks.Extensions.Phone.dll ├── Microsoft.Threading.Tasks.Extensions.dll ├── Microsoft.Threading.Tasks.dll ├── Microsoft.WindowsAzure.Mobile.Ext.dll ├── Microsoft.WindowsAzure.Mobile.UI.dll ├── Microsoft.WindowsAzure.Mobile.dll ├── Newtonsoft.Json.dll ├── System.Net.Http.Extensions.dll ├── System.Net.Http.Primitives.dll ├── System.Net.Http.dll ├── Telerik.Everlive.Sdk.dll ├── Telerik.Storage.Extensions.dll ├── Telerik.Storage_WP.dll ├── Telerik.Storage_WP.winmd ├── Telerik.Windows.Controls.Cloud.dll ├── Telerik.Windows.Controls.Cloud.xml ├── Telerik.Windows.Core.Cloud.Azure.dll ├── Telerik.Windows.Core.Cloud.Azure.xml ├── Telerik.Windows.Core.Cloud.Everlive.dll ├── Telerik.Windows.Core.Cloud.Everlive.xml ├── Telerik.Windows.Core.Cloud.dll ├── Telerik.Windows.Core.Cloud.xml ├── Telerik.Windows.Synchronization.Cloud.Azure.dll ├── Telerik.Windows.Synchronization.Cloud.Azure.xml ├── Telerik.Windows.Synchronization.Cloud.Everlive.dll ├── Telerik.Windows.Synchronization.Cloud.Everlive.xml └── design ├── Newtonsoft.Json.dll ├── Telerik.Everlive.Sdk.dll ├── Telerik.Storage.Extensions.dll ├── Telerik.Storage_WP.dll ├── Telerik.Storage_WP.winmd ├── Telerik.Windows.Controls.Cloud.Expression.Design.dll └── Telerik.Windows.Controls.Cloud.VisualStudio.Design.5.0.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/ApplicationIcon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot0.png -------------------------------------------------------------------------------- /Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot1.png -------------------------------------------------------------------------------- /Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot2.png -------------------------------------------------------------------------------- /Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot3.png -------------------------------------------------------------------------------- /Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot4.png -------------------------------------------------------------------------------- /Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot5.png -------------------------------------------------------------------------------- /Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/Screenshot6.png -------------------------------------------------------------------------------- /TinderApp.Common/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Common/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp.Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Common/Constants.cs -------------------------------------------------------------------------------- /TinderApp.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp.Common/TinderApp.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Common/TinderApp.Common.csproj -------------------------------------------------------------------------------- /TinderApp.Library/ConsentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ConsentManager.cs -------------------------------------------------------------------------------- /TinderApp.Library/Controls/CustomPhoneApplicationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Controls/CustomPhoneApplicationFrame.cs -------------------------------------------------------------------------------- /TinderApp.Library/Controls/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Controls/IApp.cs -------------------------------------------------------------------------------- /TinderApp.Library/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /TinderApp.Library/DispatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/DispatcherExtensions.cs -------------------------------------------------------------------------------- /TinderApp.Library/LocationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/LocationManager.cs -------------------------------------------------------------------------------- /TinderApp.Library/MVVM/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/MVVM/ObservableObject.cs -------------------------------------------------------------------------------- /TinderApp.Library/MVVM/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/MVVM/RelayCommand.cs -------------------------------------------------------------------------------- /TinderApp.Library/MVVM/TopBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/MVVM/TopBarViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/Minimods/Minimod.PrettyDateAndTime.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Minimods/Minimod.PrettyDateAndTime.Generated.cs -------------------------------------------------------------------------------- /TinderApp.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp.Library/TinderApp.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/TinderApp.Library.csproj -------------------------------------------------------------------------------- /TinderApp.Library/TinderSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/TinderSession.cs -------------------------------------------------------------------------------- /TinderApp.Library/TombstoneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/TombstoneManager.cs -------------------------------------------------------------------------------- /TinderApp.Library/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/Utility.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/Conversation/ConversationMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/Conversation/ConversationMessageViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/Conversation/ConversationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/Conversation/ConversationViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/Conversation/MessageTypeItemSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/Conversation/MessageTypeItemSelector.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/CustomPhoneApplicationFrameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/CustomPhoneApplicationFrameViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/FacebookAlbumPhotoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/FacebookAlbumPhotoViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/FacebookAlbumsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/FacebookAlbumsViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/MatchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/MatchViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/MatchesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/MatchesViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/UserInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/UserInfoViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/ViewModels/UserRecommendationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/ViewModels/UserRecommendationsViewModel.cs -------------------------------------------------------------------------------- /TinderApp.Library/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Library/packages.config -------------------------------------------------------------------------------- /TinderApp.Models/AddPhotoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/AddPhotoRequest.cs -------------------------------------------------------------------------------- /TinderApp.Models/AuthRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/AuthRequest.cs -------------------------------------------------------------------------------- /TinderApp.Models/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/AuthResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/BioUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/BioUpdate.cs -------------------------------------------------------------------------------- /TinderApp.Models/Facebook/FacebookSessionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Facebook/FacebookSessionInfo.cs -------------------------------------------------------------------------------- /TinderApp.Models/Facebook/FacebookUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Facebook/FacebookUser.cs -------------------------------------------------------------------------------- /TinderApp.Models/Facebook/FacebookUserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Facebook/FacebookUserResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/Facebook/PhotoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Facebook/PhotoResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/Facebook/PhotosResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Facebook/PhotosResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Globals.cs -------------------------------------------------------------------------------- /TinderApp.Models/LikeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/LikeResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Location.cs -------------------------------------------------------------------------------- /TinderApp.Models/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Match.cs -------------------------------------------------------------------------------- /TinderApp.Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Message.cs -------------------------------------------------------------------------------- /TinderApp.Models/OutgoingNewMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/OutgoingNewMessage.cs -------------------------------------------------------------------------------- /TinderApp.Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Person.cs -------------------------------------------------------------------------------- /TinderApp.Models/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Photo.cs -------------------------------------------------------------------------------- /TinderApp.Models/PingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/PingRequest.cs -------------------------------------------------------------------------------- /TinderApp.Models/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Position.cs -------------------------------------------------------------------------------- /TinderApp.Models/ProcessedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/ProcessedFile.cs -------------------------------------------------------------------------------- /TinderApp.Models/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Profile.cs -------------------------------------------------------------------------------- /TinderApp.Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp.Models/RecommendationsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/RecommendationsRequest.cs -------------------------------------------------------------------------------- /TinderApp.Models/SettingsUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/SettingsUpdate.cs -------------------------------------------------------------------------------- /TinderApp.Models/TinderApp.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/TinderApp.Models.csproj -------------------------------------------------------------------------------- /TinderApp.Models/TombstoneData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/TombstoneData.cs -------------------------------------------------------------------------------- /TinderApp.Models/UpdatesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/UpdatesRequest.cs -------------------------------------------------------------------------------- /TinderApp.Models/UpdatesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/UpdatesResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/User.cs -------------------------------------------------------------------------------- /TinderApp.Models/UserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/UserResponse.cs -------------------------------------------------------------------------------- /TinderApp.Models/UserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/UserResult.cs -------------------------------------------------------------------------------- /TinderApp.Models/Versions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/Versions.cs -------------------------------------------------------------------------------- /TinderApp.Models/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Models/packages.config -------------------------------------------------------------------------------- /TinderApp.TinderApi/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/Client.cs -------------------------------------------------------------------------------- /TinderApp.TinderApi/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/Constants.cs -------------------------------------------------------------------------------- /TinderApp.TinderApi/ContentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/ContentClient.cs -------------------------------------------------------------------------------- /TinderApp.TinderApi/Facebook/FacebookClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/Facebook/FacebookClient.cs -------------------------------------------------------------------------------- /TinderApp.TinderApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp.TinderApi/TinderApp.TinderApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/TinderApp.TinderApi.csproj -------------------------------------------------------------------------------- /TinderApp.TinderApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.TinderApi/packages.config -------------------------------------------------------------------------------- /TinderApp.Website/Tinder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/Tinder.zip -------------------------------------------------------------------------------- /TinderApp.Website/images/branding/dummylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/branding/dummylogo.png -------------------------------------------------------------------------------- /TinderApp.Website/images/branding/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/branding/favicon.ico -------------------------------------------------------------------------------- /TinderApp.Website/images/branding/headerlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/branding/headerlogo.png -------------------------------------------------------------------------------- /TinderApp.Website/images/contentback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/contentback.jpg -------------------------------------------------------------------------------- /TinderApp.Website/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/download.png -------------------------------------------------------------------------------- /TinderApp.Website/images/headerglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/headerglow.png -------------------------------------------------------------------------------- /TinderApp.Website/images/listcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/listcircle.png -------------------------------------------------------------------------------- /TinderApp.Website/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/map.png -------------------------------------------------------------------------------- /TinderApp.Website/images/phonebackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/phonebackground.png -------------------------------------------------------------------------------- /TinderApp.Website/images/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/route.png -------------------------------------------------------------------------------- /TinderApp.Website/images/screenshots/screenshot0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/screenshots/screenshot0.jpg -------------------------------------------------------------------------------- /TinderApp.Website/images/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /TinderApp.Website/images/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /TinderApp.Website/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/search.png -------------------------------------------------------------------------------- /TinderApp.Website/images/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/stats.png -------------------------------------------------------------------------------- /TinderApp.Website/images/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/images/world.png -------------------------------------------------------------------------------- /TinderApp.Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/index.html -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/jquery.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/jsLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/jsLoader.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/plugins/easySlider1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/plugins/easySlider1.7.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/plugins/easySlider1.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/plugins/easySlider1.7.min.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/plugins/jquery.tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/plugins/jquery.tweet.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/plugins/jquery.tweet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/plugins/jquery.tweet.min.js -------------------------------------------------------------------------------- /TinderApp.Website/javascripts/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/javascripts/tabs.js -------------------------------------------------------------------------------- /TinderApp.Website/stylesheets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/stylesheets/base.css -------------------------------------------------------------------------------- /TinderApp.Website/stylesheets/base.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/stylesheets/base.min.css -------------------------------------------------------------------------------- /TinderApp.Website/stylesheets/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/stylesheets/layout.css -------------------------------------------------------------------------------- /TinderApp.Website/stylesheets/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/stylesheets/skeleton.css -------------------------------------------------------------------------------- /TinderApp.Website/website.publishproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.Website/website.publishproj -------------------------------------------------------------------------------- /TinderApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp.sln -------------------------------------------------------------------------------- /TinderApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/App.xaml -------------------------------------------------------------------------------- /TinderApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/App.xaml.cs -------------------------------------------------------------------------------- /TinderApp/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/ApplicationIcon.png -------------------------------------------------------------------------------- /TinderApp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Background.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Chat.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Chats.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Heart.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Like.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Map_Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Map_Pin.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Menu.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Messages.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Pass.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/SendIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/SendIcon.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/SmallTopLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/SmallTopLogo.jpg -------------------------------------------------------------------------------- /TinderApp/Assets/Images/Spanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/Spanner.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/active_404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/active_404.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/friends.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/i.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/interests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/interests.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/photos.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/pressed_404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/pressed_404.png -------------------------------------------------------------------------------- /TinderApp/Assets/Images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Images/status.png -------------------------------------------------------------------------------- /TinderApp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /TinderApp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /TinderApp/Assets/Tinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Assets/Tinder.png -------------------------------------------------------------------------------- /TinderApp/ConversationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/ConversationPage.xaml -------------------------------------------------------------------------------- /TinderApp/ConversationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/ConversationPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/EditProfile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/EditProfile.xaml -------------------------------------------------------------------------------- /TinderApp/EditProfile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/EditProfile.xaml.cs -------------------------------------------------------------------------------- /TinderApp/FacebookAlbumsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/FacebookAlbumsPage.xaml -------------------------------------------------------------------------------- /TinderApp/FacebookAlbumsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/FacebookAlbumsPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/InitialPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/InitialPage.xaml -------------------------------------------------------------------------------- /TinderApp/InitialPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/InitialPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/MainPage.xaml -------------------------------------------------------------------------------- /TinderApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/ProfileInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/ProfileInfoPage.xaml -------------------------------------------------------------------------------- /TinderApp/ProfileInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/ProfileInfoPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TinderApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TinderApp/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /TinderApp/RightSideBarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/RightSideBarControl.xaml -------------------------------------------------------------------------------- /TinderApp/RightSideBarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/RightSideBarControl.xaml.cs -------------------------------------------------------------------------------- /TinderApp/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/SettingsPage.xaml -------------------------------------------------------------------------------- /TinderApp/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /TinderApp/TinderApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/TinderApp.csproj -------------------------------------------------------------------------------- /TinderApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderApp/packages.config -------------------------------------------------------------------------------- /TinderBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/TinderBG.png -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.Ext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.Ext.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.UI.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Microsoft.WindowsAzure.Mobile.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/System.Net.Http.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Everlive.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Everlive.Sdk.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage_WP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage_WP.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage_WP.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Storage_WP.winmd -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Controls.Cloud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Controls.Cloud.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Controls.Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Controls.Cloud.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Azure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Azure.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Azure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Azure.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Everlive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Everlive.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Everlive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.Everlive.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Core.Cloud.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Azure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Azure.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Azure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Azure.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Everlive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Everlive.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Everlive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/ARM/Telerik.Windows.Synchronization.Cloud.Everlive.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.BackgroundAgentTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.BackgroundAgentTools.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.BackgroundAgentTools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.BackgroundAgentTools.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Behaviors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Behaviors.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Behaviors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Behaviors.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Chart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Chart.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Chart.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Data.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Data.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.DataVisualization.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.DataVisualization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.DataVisualization.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.ImageEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.ImageEditor.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.ImageEditor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.ImageEditor.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Input.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Input.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Primitives.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Controls.Primitives.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Core.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Core.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Data.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/Telerik.Windows.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/Telerik.Windows.Data.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.ImageEditor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.ImageEditor.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.Input.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.Input.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.Primitives.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/de-DE/Telerik.Windows.Controls.Primitives.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Chart.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Chart.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Chart.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Chart.VisualStudio.Design.5.0.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Data.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Data.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Data.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Data.VisualStudio.Design.5.0.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.DataVisualization.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.DataVisualization.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.DataVisualization.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.DataVisualization.VisualStudio.Design.5.0.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Input.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Input.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Input.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Input.VisualStudio.Design.5.0.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Primitives.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Primitives.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Primitives.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/design/Telerik.Windows.Controls.Primitives.VisualStudio.Design.5.0.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/distribution.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.ImageEditor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.ImageEditor.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.Input.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.Input.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.Primitives.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/fr-FR/Telerik.Windows.Controls.Primitives.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.ImageEditor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.ImageEditor.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.Input.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.Input.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.Primitives.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/it-IT/Telerik.Windows.Controls.Primitives.resources.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.Ext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.Ext.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.UI.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Microsoft.WindowsAzure.Mobile.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/System.Net.Http.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Everlive.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Everlive.Sdk.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage_WP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage_WP.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage_WP.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Storage_WP.winmd -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Controls.Cloud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Controls.Cloud.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Controls.Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Controls.Cloud.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Azure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Azure.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Azure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Azure.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Everlive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Everlive.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Everlive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.Everlive.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Core.Cloud.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Azure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Azure.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Azure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Azure.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Everlive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Everlive.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Everlive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/Telerik.Windows.Synchronization.Cloud.Everlive.xml -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Everlive.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Everlive.Sdk.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage.Extensions.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage_WP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage_WP.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage_WP.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Storage_WP.winmd -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Windows.Controls.Cloud.Expression.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Windows.Controls.Cloud.Expression.Design.dll -------------------------------------------------------------------------------- /lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Windows.Controls.Cloud.VisualStudio.Design.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhama/tinder/HEAD/lib/RCWP/2013.3.1121.3040/x86/design/Telerik.Windows.Controls.Cloud.VisualStudio.Design.5.0.dll --------------------------------------------------------------------------------