├── .gitignore ├── .nuget ├── NuGet.config └── NuGet.exe ├── CONTRIBUTING.md ├── GettingStarted.md ├── GlobalizationNotes.md ├── Images ├── Architecture.jpg ├── Authentication-NoAction.jpg ├── Category-Overview-Desktop-Mobile.jpg ├── Category-Overview-Desktop.jpg ├── Category-Overview-Mobile.jpg ├── Debug-Page.jpg ├── DocumentDB-Names.jpg ├── Leaderboard-Design.jpg ├── PhotoDetailsPage-Desktop.jpg ├── PhotoDetailsPage-Mobile.jpg ├── PhotoStream-Desktop.jpg ├── PhotoStream-Mobile.jpg ├── ProfilePage-Desktop.jpg ├── ProfilePage-Mobile.jpg ├── ViewModelBase.jpg └── VisualStudio-Features.jpg ├── LICENSE.md ├── PhotoSharingApp.sln ├── PhotoSharingApp ├── PhotoSharingApp.AppService.Shared │ ├── Caching │ │ ├── ICacheService.cs │ │ └── MemoryCacheService.cs │ ├── Context │ │ ├── DocumentDbStorage.cs │ │ ├── EnvironmentDefinition.cs │ │ ├── EnvironmentDefinitionBase.cs │ │ └── SystemContext.cs │ ├── DataLayerError.cs │ ├── DataLayerException.cs │ ├── IapValidationError.cs │ ├── IapValidationException.cs │ ├── Models │ │ └── DocumentDB │ │ │ ├── AnnotationDocument.cs │ │ │ ├── BaseDocument.cs │ │ │ ├── CategoryDocument.cs │ │ │ ├── DateDocument.cs │ │ │ ├── GoldTransactionDocument.cs │ │ │ ├── GoldTransactionType.cs │ │ │ ├── IapPurchaseDocument.cs │ │ │ ├── PhotoDocument.cs │ │ │ ├── ReportDocument.cs │ │ │ ├── UserDocument.cs │ │ │ └── js │ │ │ ├── getRecentPhotosForCategoriesStoredProcedure.js │ │ │ └── transferGoldStoredProcedure.js │ ├── PhotoSharingApp.AppService.Shared.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repositories │ │ ├── CachedRepository.cs │ │ ├── DocumentDbRepository.cs │ │ └── IRepository.cs │ ├── Validation │ │ ├── DataModelSanitization.cs │ │ ├── IIapValidator.cs │ │ ├── IPhotoValidation.cs │ │ ├── IapValidator.cs │ │ └── PhotoValidation.cs │ ├── app.config │ └── packages.config ├── PhotoSharingApp.AppService.Tests │ ├── ApplicationInsights.config │ ├── BaseTest.cs │ ├── Caching │ │ └── MemoryCacheServiceTests.cs │ ├── Context │ │ └── TestEnvironmentDefinition.cs │ ├── Controllers │ │ ├── AnnotationControllerTests.cs │ │ ├── CategoryControllerTests.cs │ │ ├── ConfigControllerTests.cs │ │ ├── HeroPhotoControllerTests.cs │ │ ├── LeaderboardControllerTests.cs │ │ ├── PhotoControllerTests.cs │ │ ├── ReportControllerTests.cs │ │ ├── SasUrlControllerTests.cs │ │ ├── UserControllerTests.cs │ │ └── UserPhotoControllerTests.cs │ ├── DAL │ │ ├── CachedRepositoryLoadTests.cs │ │ ├── CachedRepositoryTests.cs │ │ ├── DocumentDbLoadTests.cs │ │ ├── DocumentDbRepositoryTests.cs │ │ └── RepositoryMock.cs │ ├── E2E │ │ └── UploadE2ETests.cs │ ├── Helpers │ │ └── UserRegistrationReferenceProviderMock.cs │ ├── PhotoSharingApp.AppService.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Validation │ │ └── DataModelValidationTests.cs │ ├── app.config │ └── packages.config ├── PhotoSharingApp.AppService │ ├── App_Start │ │ ├── ApplicationInsightsExceptionLogger.cs │ │ └── Startup.MobileApp.cs │ ├── ApplicationInsights.config │ ├── Controllers │ │ ├── AnnotationController.cs │ │ ├── BaseController.cs │ │ ├── CategoryController.cs │ │ ├── ConfigController.cs │ │ ├── HeroPhotoController.cs │ │ ├── IapController.cs │ │ ├── LeaderboardController.cs │ │ ├── NotificationRegistrationController.cs │ │ ├── PhotoController.cs │ │ ├── ReportController.cs │ │ ├── SasUrlController.cs │ │ ├── UserController.cs │ │ └── UserPhotoController.cs │ ├── Helpers │ │ ├── DefaultUserRegistrationReferenceProvider.cs │ │ └── IUserRegistrationReferenceProvider.cs │ ├── Models │ │ └── NotificationsHubModel.cs │ ├── Notifications │ │ ├── INotificationHandler.cs │ │ └── NotificationHandler.cs │ ├── PhotoSharingApp.AppService.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceCore │ │ ├── ServiceExceptions.cs │ │ └── ServiceFault.cs │ ├── Startup.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── PhotoSharingApp.Portable │ ├── DataContracts │ │ ├── AnnotationContract.cs │ │ ├── CategoryContract.cs │ │ ├── CategoryPreviewContract.cs │ │ ├── ConfigContract.cs │ │ ├── ContentType.cs │ │ ├── DeviceRegistrationContract.cs │ │ ├── IapPurchaseContract.cs │ │ ├── LeaderboardContract.cs │ │ ├── LeaderboardEntryContract.cs │ │ ├── PagedResponse.cs │ │ ├── PhotoContract.cs │ │ ├── PhotoStatus.cs │ │ ├── PhotoThumbnailContract.cs │ │ ├── PhotoTypeContract.cs │ │ ├── PushNotificationPlatformContract.cs │ │ ├── ReportContract.cs │ │ ├── ReportReason.cs │ │ ├── SasContract.cs │ │ ├── ServiceFaultContract.cs │ │ ├── StringWrapper.cs │ │ └── UserContract.cs │ ├── Extensions │ │ └── PhotoTypeContractExtensions.cs │ ├── PhotoSharingApp.Portable.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PhotoSharingApp.Universal.Tests │ ├── 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 │ │ ├── TestImages │ │ │ ├── TestUploadPhoto.jpg │ │ │ └── TestUploadPhoto.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Attributes │ │ └── UITestMethodAttribute.cs │ ├── Editing │ │ └── BitmapToolsTests.cs │ ├── Extensions │ │ ├── DateTimeExtensionsTests.cs │ │ ├── DeviceFamilyStringExtensionsTests.cs │ │ ├── VideoEncodingPropertiesExtensionsTests.cs │ │ └── VisualTreeHelperExtensionsTests.cs │ ├── Models │ │ ├── CategoryMatchFinderTests.cs │ │ └── CategoryTests.cs │ ├── Package.appxmanifest │ ├── PhotoSharingApp.Universal.Tests.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── Services │ │ ├── ServiceClientTests.cs │ │ └── ServiceLoadTests.cs │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ └── project.json └── PhotoSharingApp.Universal │ ├── Actions │ ├── CloseMenuFlyoutAction.cs │ └── OpenMenuFlyoutAction.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShareTarget.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── PlaceHolder.jpg │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ ├── StoreLogo.png │ ├── Welcome │ │ ├── CategoriesPreview.jpg │ │ ├── GiveGold.jpg │ │ ├── GoldBalance.jpg │ │ ├── Logo.png │ │ ├── SignIn.jpg │ │ └── gradient-white.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png │ ├── Camera │ ├── AspectRatio.cs │ ├── CameraEngine.cs │ ├── CameraNotFoundException.cs │ └── ICameraEngine.cs │ ├── Commands │ ├── BaseCommand.cs │ └── RelayCommand.cs │ ├── ComponentModel │ ├── IncrementalLoadingCollection.cs │ └── ObservableObjectBase.cs │ ├── ContractModelConverterExtensions │ ├── AnnotationConverter.cs │ ├── CategoryConverter.cs │ ├── CategoryPreviewConverter.cs │ ├── ConfigConverter.cs │ ├── LeaderboardConverter.cs │ ├── LeaderboardEntryConverter.cs │ ├── PhotoConverter.cs │ ├── PhotoThumbnailConverter.cs │ └── UserConverter.cs │ ├── Controls │ ├── AnimatedImage.xaml │ ├── AnimatedImage.xaml.cs │ ├── CropControl.cs │ ├── FeaturedPhotoControl.xaml │ ├── FeaturedPhotoControl.xaml.cs │ ├── GoldButton.cs │ ├── GoldPurchasePromptControl.xaml │ ├── GoldPurchasePromptControl.xaml.cs │ ├── HeroImageControl.xaml │ ├── HeroImageControl.xaml.cs │ ├── LeaderboardsCategoryControl.xaml │ ├── LeaderboardsCategoryControl.xaml.cs │ ├── LeaderboardsPhotoControl.xaml │ ├── LeaderboardsPhotoControl.xaml.cs │ ├── LeaderboardsUserControl.xaml │ ├── LeaderboardsUserControl.xaml.cs │ ├── MyControl.xaml │ ├── MyControl.xaml.cs │ ├── NavMenuListView.cs │ ├── PageHeader.xaml │ ├── PageHeader.xaml.cs │ ├── SignInPromptControl.xaml │ ├── SignInPromptControl.xaml.cs │ ├── UploadPhotoControl.xaml │ ├── UploadPhotoControl.xaml.cs │ ├── UserProfilePictureControl.xaml │ └── UserProfilePictureControl.xaml.cs │ ├── Editing │ └── BitmapTools.cs │ ├── Extensions │ ├── BoolExtensions.cs │ ├── CategoryExtensions.cs │ ├── CategoryPreviewExtensions.cs │ ├── DateTimeExtensions.cs │ ├── DeviceFamilyStringExtensions.cs │ ├── DisplayOrientationsExtensions.cs │ ├── EnumExtensions.cs │ ├── PackageVersionExtensions.cs │ ├── PhotoExtensions.cs │ ├── PhotoListExtensions.cs │ ├── PhotoStatusExtensions.cs │ ├── StringExtensions.cs │ ├── VideoEncodingPropertiesExtensions.cs │ ├── VisualTreeHelperExtensions.cs │ └── WriteableBitmapExtensions.cs │ ├── Facades │ ├── ILicensingFacade.cs │ ├── INavigationFacade.cs │ ├── LicensingFacade.cs │ └── NavigationFacade.cs │ ├── Lifecycle │ ├── AppInitialization.cs │ └── AppLaunchCounter.cs │ ├── Models │ ├── Annotation.cs │ ├── AppEnvironment.cs │ ├── Category.cs │ ├── CategoryMatchFinder.cs │ ├── CategoryMatchedException.cs │ ├── CategoryPreview.cs │ ├── CategoryRequiredException.cs │ ├── Config.cs │ ├── DefaultConfig.cs │ ├── DeviceFamily.cs │ ├── EditingMode.cs │ ├── IAppEnvironment.cs │ ├── InstructionItem.cs │ ├── Leaderboard.cs │ ├── LeaderboardEntry.cs │ ├── Photo.cs │ ├── PhotoStream.cs │ ├── PhotoStreamLayoutType.cs │ ├── PhotoThumbnail.cs │ └── User.cs │ ├── NavigationBar │ ├── CameraNavigationBarMenuItem.cs │ ├── CategoriesNavigationBarMenuItem.cs │ ├── DebugNavigationBarMenuItem.cs │ ├── INavigationBarMenuItem.cs │ ├── LeaderboardNavigationBarMenuItem.cs │ ├── NavigationBarItemPosition.cs │ ├── NavigationBarMenuItemBase.cs │ ├── ProfileNavigationBarMenuItem.cs │ ├── SettingsNavigationBarMenuItem.cs │ └── WelcomeNavigationBarMenuItem.cs │ ├── Package.appxmanifest │ ├── PhotoSharingApp.Universal.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── Registries │ ├── IRegistry.cs │ ├── NavigationBarRegistry.cs │ ├── RegistryBase.cs │ ├── ServicesRegistry.cs │ ├── ViewModelRegistry.cs │ └── ViewRegistry.cs │ ├── Serialization │ └── SerializationHelper.cs │ ├── ServiceEnvironments │ ├── ServiceEnvironment.cs │ └── ServiceEnvironmentBase.cs │ ├── Services │ ├── AuthEnforcementHandler.cs │ ├── AuthenticationCancelledException.cs │ ├── AuthenticationException.cs │ ├── AuthenticationHandler.cs │ ├── AzureAppService.cs │ ├── IAuthEnforcementHandler.cs │ ├── IAuthenticationHandler.cs │ ├── IPhotoService.cs │ ├── InsufficientBalanceException.cs │ ├── NotificationRegistrationClient.cs │ ├── PhotoDummyService.cs │ ├── ServiceClient.cs │ ├── ServiceException.cs │ ├── SignInCompletionSource.cs │ ├── SignInRequiredException.cs │ └── UnauthorizedException.cs │ ├── StateTriggers │ └── DeviceFamilyTrigger.cs │ ├── Storage │ ├── FilePickerHelper.cs │ └── InvalidImageDimensionsException.cs │ ├── Store │ ├── CurrentAppProxy.cs │ ├── InAppPurchaseException.cs │ ├── InAppPurchases.cs │ └── Simulation │ │ ├── CurrentAppSimulatorHelper.cs │ │ └── app-listing.xml │ ├── Strings │ ├── en │ │ └── Resources.resw │ └── fr-fr │ │ └── Resources.resw │ ├── Styles │ └── Styles.xaml │ ├── Unity │ ├── DesignTimeUnityBootstrapper.cs │ ├── ServiceLocatorExtensions.cs │ ├── UnityBootstrapper.cs │ └── UnityExtensions.cs │ ├── ValueConverters │ ├── AuthProviderToStringConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── EnumDisplayNameToStringConverter.cs │ ├── GoldValueToGaveGoldStringConverter.cs │ ├── InverseBooleanConverter.cs │ ├── NullToBoolConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── PhotoStatusToStringConverter.cs │ ├── RelativeTimeConverter.cs │ └── SelectedLegendItemToColorConverter.cs │ ├── ViewModels │ ├── AboutViewModel.cs │ ├── AppShellViewModel.cs │ ├── CameraViewModel.cs │ ├── CameraViewModelArgs.cs │ ├── CategoriesChooserViewModel.cs │ ├── CategoriesViewModel.cs │ ├── CropViewModel.cs │ ├── CropViewModelArgs.cs │ ├── DebugViewModel.cs │ ├── DefaultUploadFinishedHandler.cs │ ├── Design │ │ ├── AppShellDesignViewModel.cs │ │ ├── CategoriesChooserDesignViewModel.cs │ │ ├── CategoriesDesignViewModel.cs │ │ ├── LeaderboardDesignViewModel.cs │ │ ├── PhotoDetailsDesignViewModel.cs │ │ ├── ProfileDesignViewModel.cs │ │ ├── SignInDesignViewModel.cs │ │ ├── StreamDesignViewModel.cs │ │ ├── UploadDesignViewModel.cs │ │ └── WelcomeDesignViewModel.cs │ ├── GiveGoldViewModel.cs │ ├── GoldPurchasePromptViewModel.cs │ ├── IUploadFinishedHandler.cs │ ├── LeaderboardViewModel.cs │ ├── PageHeaderViewModel.cs │ ├── PhotoDetailsViewModel.cs │ ├── PhotoDetailsViewModelArgs.cs │ ├── PhotoDetailsViewModelPhotoIdArgs.cs │ ├── ProfileViewModel.cs │ ├── ProfileViewModelArgs.cs │ ├── SettingsViewModel.cs │ ├── ShareTargetUploadFinishedHandler.cs │ ├── SignInPromptViewModel.cs │ ├── SignInViewModel.cs │ ├── StreamViewModel.cs │ ├── StreamViewModelArgs.cs │ ├── StreamViewModelThumbnailArgs.cs │ ├── UploadPhotoControlViewModel.cs │ ├── UploadViewModel.cs │ ├── UploadViewModelArgs.cs │ ├── UploadViewModelEditPhotoArgs.cs │ ├── ViewModelArgs.cs │ ├── ViewModelBase.cs │ └── WelcomeViewModel.cs │ ├── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── AnimationHelper.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── BasePage.cs │ ├── CameraPage.xaml │ ├── CameraPage.xaml.cs │ ├── CategoriesChooserDialog.xaml │ ├── CategoriesChooserDialog.xaml.cs │ ├── CategoriesPage.xaml │ ├── CategoriesPage.xaml.cs │ ├── CropPage.xaml │ ├── CropPage.xaml.cs │ ├── DebugPage.xaml │ ├── DebugPage.xaml.cs │ ├── GiveGoldDialog.xaml │ ├── GiveGoldDialog.xaml.cs │ ├── ICameraView.cs │ ├── ICropControl.cs │ ├── IDialogService.cs │ ├── LeaderboardsPage.xaml │ ├── LeaderboardsPage.xaml.cs │ ├── MessageDialogService.cs │ ├── PhotoDetailsPage.xaml │ ├── PhotoDetailsPage.xaml.cs │ ├── ProfilePage.xaml │ ├── ProfilePage.xaml.cs │ ├── SelectedRegion.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── SignInPage.xaml │ ├── SignInPage.xaml.cs │ ├── StreamPage.xaml │ ├── StreamPage.xaml.cs │ ├── UploadPage.xaml │ ├── UploadPage.xaml.cs │ ├── WelcomePage.xaml │ └── WelcomePage.xaml.cs │ └── project.json ├── ProjectOverview.md ├── README.md ├── SECURITY.md └── TechnicalDeepDive.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/.nuget/NuGet.config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /GlobalizationNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/GlobalizationNotes.md -------------------------------------------------------------------------------- /Images/Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Architecture.jpg -------------------------------------------------------------------------------- /Images/Authentication-NoAction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Authentication-NoAction.jpg -------------------------------------------------------------------------------- /Images/Category-Overview-Desktop-Mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Category-Overview-Desktop-Mobile.jpg -------------------------------------------------------------------------------- /Images/Category-Overview-Desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Category-Overview-Desktop.jpg -------------------------------------------------------------------------------- /Images/Category-Overview-Mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Category-Overview-Mobile.jpg -------------------------------------------------------------------------------- /Images/Debug-Page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Debug-Page.jpg -------------------------------------------------------------------------------- /Images/DocumentDB-Names.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/DocumentDB-Names.jpg -------------------------------------------------------------------------------- /Images/Leaderboard-Design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/Leaderboard-Design.jpg -------------------------------------------------------------------------------- /Images/PhotoDetailsPage-Desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/PhotoDetailsPage-Desktop.jpg -------------------------------------------------------------------------------- /Images/PhotoDetailsPage-Mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/PhotoDetailsPage-Mobile.jpg -------------------------------------------------------------------------------- /Images/PhotoStream-Desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/PhotoStream-Desktop.jpg -------------------------------------------------------------------------------- /Images/PhotoStream-Mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/PhotoStream-Mobile.jpg -------------------------------------------------------------------------------- /Images/ProfilePage-Desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/ProfilePage-Desktop.jpg -------------------------------------------------------------------------------- /Images/ProfilePage-Mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/ProfilePage-Mobile.jpg -------------------------------------------------------------------------------- /Images/ViewModelBase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/ViewModelBase.jpg -------------------------------------------------------------------------------- /Images/VisualStudio-Features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/Images/VisualStudio-Features.jpg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PhotoSharingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp.sln -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Caching/ICacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Caching/ICacheService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Caching/MemoryCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Caching/MemoryCacheService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/DocumentDbStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/DocumentDbStorage.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/EnvironmentDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/EnvironmentDefinition.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/EnvironmentDefinitionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/EnvironmentDefinitionBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/SystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Context/SystemContext.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/DataLayerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/DataLayerError.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/DataLayerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/DataLayerException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/IapValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/IapValidationError.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/IapValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/IapValidationException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/AnnotationDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/AnnotationDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/BaseDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/BaseDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/CategoryDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/CategoryDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/DateDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/DateDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/GoldTransactionDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/GoldTransactionDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/GoldTransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/GoldTransactionType.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/IapPurchaseDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/IapPurchaseDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/PhotoDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/PhotoDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/ReportDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/ReportDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/UserDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/UserDocument.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/js/getRecentPhotosForCategoriesStoredProcedure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/js/getRecentPhotosForCategoriesStoredProcedure.js -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/js/transferGoldStoredProcedure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Models/DocumentDB/js/transferGoldStoredProcedure.js -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/PhotoSharingApp.AppService.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/PhotoSharingApp.AppService.Shared.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/CachedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/CachedRepository.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/DocumentDbRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/DocumentDbRepository.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Repositories/IRepository.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/DataModelSanitization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/DataModelSanitization.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IIapValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IIapValidator.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IPhotoValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IPhotoValidation.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IapValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/IapValidator.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/PhotoValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/Validation/PhotoValidation.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/app.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Shared/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Shared/packages.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/ApplicationInsights.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/BaseTest.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Caching/MemoryCacheServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Caching/MemoryCacheServiceTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Context/TestEnvironmentDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Context/TestEnvironmentDefinition.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/AnnotationControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/AnnotationControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/CategoryControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/CategoryControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/ConfigControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/ConfigControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/HeroPhotoControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/HeroPhotoControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/LeaderboardControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/LeaderboardControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/PhotoControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/PhotoControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/ReportControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/ReportControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/SasUrlControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/SasUrlControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/UserControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/UserControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/UserPhotoControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Controllers/UserPhotoControllerTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/CachedRepositoryLoadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/CachedRepositoryLoadTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/CachedRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/CachedRepositoryTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/DocumentDbLoadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/DocumentDbLoadTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/DocumentDbRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/DocumentDbRepositoryTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/RepositoryMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/DAL/RepositoryMock.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/E2E/UploadE2ETests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/E2E/UploadE2ETests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Helpers/UserRegistrationReferenceProviderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Helpers/UserRegistrationReferenceProviderMock.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/PhotoSharingApp.AppService.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/PhotoSharingApp.AppService.Tests.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/Validation/DataModelValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/Validation/DataModelValidationTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/app.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService.Tests/packages.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/App_Start/ApplicationInsightsExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/App_Start/ApplicationInsightsExceptionLogger.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/App_Start/Startup.MobileApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/App_Start/Startup.MobileApp.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/ApplicationInsights.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/AnnotationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/AnnotationController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/BaseController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/ConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/ConfigController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/HeroPhotoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/HeroPhotoController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/IapController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/IapController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/LeaderboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/LeaderboardController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/NotificationRegistrationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/NotificationRegistrationController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/PhotoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/PhotoController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/ReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/ReportController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/SasUrlController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/SasUrlController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/UserController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Controllers/UserPhotoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Controllers/UserPhotoController.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Helpers/DefaultUserRegistrationReferenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Helpers/DefaultUserRegistrationReferenceProvider.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Helpers/IUserRegistrationReferenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Helpers/IUserRegistrationReferenceProvider.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Models/NotificationsHubModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Models/NotificationsHubModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Notifications/INotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Notifications/INotificationHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Notifications/NotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Notifications/NotificationHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/PhotoSharingApp.AppService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/PhotoSharingApp.AppService.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/ServiceCore/ServiceExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/ServiceCore/ServiceExceptions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/ServiceCore/ServiceFault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/ServiceCore/ServiceFault.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Startup.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Web.Debug.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Web.Release.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/Web.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.AppService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.AppService/packages.config -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/AnnotationContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/AnnotationContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/CategoryContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/CategoryContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/CategoryPreviewContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/CategoryPreviewContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ConfigContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ConfigContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ContentType.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/DeviceRegistrationContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/DeviceRegistrationContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/IapPurchaseContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/IapPurchaseContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/LeaderboardContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/LeaderboardContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/LeaderboardEntryContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/LeaderboardEntryContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PagedResponse.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoStatus.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoThumbnailContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoThumbnailContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoTypeContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PhotoTypeContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PushNotificationPlatformContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/PushNotificationPlatformContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ReportContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ReportContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ReportReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ReportReason.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/SasContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/SasContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ServiceFaultContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/ServiceFaultContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/StringWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/StringWrapper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/UserContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/DataContracts/UserContract.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/Extensions/PhotoTypeContractExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/Extensions/PhotoTypeContractExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/PhotoSharingApp.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/PhotoSharingApp.Portable.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/TestImages/TestUploadPhoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/TestImages/TestUploadPhoto.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/TestImages/TestUploadPhoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/TestImages/TestUploadPhoto.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Attributes/UITestMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Attributes/UITestMethodAttribute.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Editing/BitmapToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Editing/BitmapToolsTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/DateTimeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/DateTimeExtensionsTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/DeviceFamilyStringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/DeviceFamilyStringExtensionsTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/VideoEncodingPropertiesExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/VideoEncodingPropertiesExtensionsTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/VisualTreeHelperExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Extensions/VisualTreeHelperExtensionsTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Models/CategoryMatchFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Models/CategoryMatchFinderTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Models/CategoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Models/CategoryTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Package.appxmanifest -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/PhotoSharingApp.Universal.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/PhotoSharingApp.Universal.Tests.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Services/ServiceClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Services/ServiceClientTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/Services/ServiceLoadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/Services/ServiceLoadTests.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/UnitTestApp.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal.Tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal.Tests/project.json -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Actions/CloseMenuFlyoutAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Actions/CloseMenuFlyoutAction.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Actions/OpenMenuFlyoutAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Actions/OpenMenuFlyoutAction.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/App.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/App.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/AppShareTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/AppShareTarget.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/PlaceHolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/PlaceHolder.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/StoreLogo.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/CategoriesPreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/CategoriesPreview.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/GiveGold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/GiveGold.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/GoldBalance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/GoldBalance.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/Logo.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/SignIn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/SignIn.jpg -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/gradient-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Welcome/gradient-white.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Camera/AspectRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Camera/AspectRatio.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Camera/CameraEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Camera/CameraEngine.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Camera/CameraNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Camera/CameraNotFoundException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Camera/ICameraEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Camera/ICameraEngine.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Commands/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Commands/RelayCommand.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ComponentModel/IncrementalLoadingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ComponentModel/IncrementalLoadingCollection.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ComponentModel/ObservableObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ComponentModel/ObservableObjectBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/AnnotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/AnnotationConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/CategoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/CategoryConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/CategoryPreviewConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/CategoryPreviewConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/ConfigConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/ConfigConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/LeaderboardConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/LeaderboardConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/LeaderboardEntryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/LeaderboardEntryConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/PhotoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/PhotoConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/PhotoThumbnailConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/PhotoThumbnailConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/UserConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ContractModelConverterExtensions/UserConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/AnimatedImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/AnimatedImage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/AnimatedImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/AnimatedImage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/CropControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/CropControl.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/FeaturedPhotoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/FeaturedPhotoControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/FeaturedPhotoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/FeaturedPhotoControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldButton.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldPurchasePromptControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldPurchasePromptControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldPurchasePromptControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/GoldPurchasePromptControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/HeroImageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/HeroImageControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/HeroImageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/HeroImageControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsCategoryControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsCategoryControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsCategoryControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsCategoryControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsPhotoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsPhotoControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsPhotoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsPhotoControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsUserControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/LeaderboardsUserControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/MyControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/MyControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/MyControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/MyControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/NavMenuListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/NavMenuListView.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/PageHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/PageHeader.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/PageHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/PageHeader.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/SignInPromptControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/SignInPromptControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/SignInPromptControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/SignInPromptControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/UploadPhotoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/UploadPhotoControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/UploadPhotoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/UploadPhotoControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/UserProfilePictureControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/UserProfilePictureControl.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Controls/UserProfilePictureControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Controls/UserProfilePictureControl.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Editing/BitmapTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Editing/BitmapTools.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/BoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/BoolExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/CategoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/CategoryExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/CategoryPreviewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/CategoryPreviewExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DeviceFamilyStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DeviceFamilyStringExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DisplayOrientationsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/DisplayOrientationsExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PackageVersionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PackageVersionExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoListExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/PhotoStatusExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/VideoEncodingPropertiesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/VideoEncodingPropertiesExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/VisualTreeHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/VisualTreeHelperExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Extensions/WriteableBitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Extensions/WriteableBitmapExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Facades/ILicensingFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Facades/ILicensingFacade.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Facades/INavigationFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Facades/INavigationFacade.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Facades/LicensingFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Facades/LicensingFacade.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Facades/NavigationFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Facades/NavigationFacade.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Lifecycle/AppInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Lifecycle/AppInitialization.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Lifecycle/AppLaunchCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Lifecycle/AppLaunchCounter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/Annotation.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/AppEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/AppEnvironment.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/Category.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryMatchFinder.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryMatchedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryMatchedException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryPreview.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/CategoryRequiredException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/Config.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/DefaultConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/DefaultConfig.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/DeviceFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/DeviceFamily.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/EditingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/EditingMode.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/IAppEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/IAppEnvironment.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/InstructionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/InstructionItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/Leaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/Leaderboard.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/LeaderboardEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/LeaderboardEntry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/Photo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoStream.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoStreamLayoutType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoStreamLayoutType.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/PhotoThumbnail.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Models/User.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/CameraNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/CameraNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/CategoriesNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/CategoriesNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/DebugNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/DebugNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/INavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/INavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/LeaderboardNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/LeaderboardNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/NavigationBarItemPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/NavigationBarItemPosition.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/NavigationBarMenuItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/NavigationBarMenuItemBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/ProfileNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/ProfileNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/SettingsNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/SettingsNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/WelcomeNavigationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/NavigationBar/WelcomeNavigationBarMenuItem.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Package.appxmanifest -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/PhotoSharingApp.Universal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/PhotoSharingApp.Universal.csproj -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Properties/Default.rd.xml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/IRegistry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/NavigationBarRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/NavigationBarRegistry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/RegistryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/RegistryBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/ServicesRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/ServicesRegistry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/ViewModelRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/ViewModelRegistry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Registries/ViewRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Registries/ViewRegistry.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Serialization/SerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Serialization/SerializationHelper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ServiceEnvironments/ServiceEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ServiceEnvironments/ServiceEnvironment.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ServiceEnvironments/ServiceEnvironmentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ServiceEnvironments/ServiceEnvironmentBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthEnforcementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthEnforcementHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationCancelledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationCancelledException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/AuthenticationHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/AzureAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/AzureAppService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/IAuthEnforcementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/IAuthEnforcementHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/IAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/IAuthenticationHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/IPhotoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/IPhotoService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/InsufficientBalanceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/InsufficientBalanceException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/NotificationRegistrationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/NotificationRegistrationClient.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/PhotoDummyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/PhotoDummyService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/ServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/ServiceClient.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/ServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/ServiceException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/SignInCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/SignInCompletionSource.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/SignInRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/SignInRequiredException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Services/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Services/UnauthorizedException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/StateTriggers/DeviceFamilyTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/StateTriggers/DeviceFamilyTrigger.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Storage/FilePickerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Storage/FilePickerHelper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Storage/InvalidImageDimensionsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Storage/InvalidImageDimensionsException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Store/CurrentAppProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Store/CurrentAppProxy.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Store/InAppPurchaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Store/InAppPurchaseException.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Store/InAppPurchases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Store/InAppPurchases.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Store/Simulation/CurrentAppSimulatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Store/Simulation/CurrentAppSimulatorHelper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Store/Simulation/app-listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Store/Simulation/app-listing.xml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Strings/en/Resources.resw -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Strings/fr-fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Strings/fr-fr/Resources.resw -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Styles/Styles.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Unity/DesignTimeUnityBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Unity/DesignTimeUnityBootstrapper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Unity/ServiceLocatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Unity/ServiceLocatorExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Unity/UnityBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Unity/UnityBootstrapper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Unity/UnityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Unity/UnityExtensions.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/AuthProviderToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/AuthProviderToStringConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/EnumDisplayNameToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/EnumDisplayNameToStringConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/GoldValueToGaveGoldStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/GoldValueToGaveGoldStringConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/NullToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/NullToBoolConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/PhotoStatusToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/PhotoStatusToStringConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/RelativeTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/RelativeTimeConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/SelectedLegendItemToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ValueConverters/SelectedLegendItemToColorConverter.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/AppShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/AppShellViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CameraViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CameraViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CameraViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CameraViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CategoriesChooserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CategoriesChooserViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CategoriesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CategoriesViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CropViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CropViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CropViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/CropViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/DebugViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/DebugViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/DefaultUploadFinishedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/DefaultUploadFinishedHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/AppShellDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/AppShellDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/CategoriesChooserDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/CategoriesChooserDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/CategoriesDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/CategoriesDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/LeaderboardDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/LeaderboardDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/PhotoDetailsDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/PhotoDetailsDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/ProfileDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/ProfileDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/SignInDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/SignInDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/StreamDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/StreamDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/UploadDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/UploadDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/WelcomeDesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/Design/WelcomeDesignViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/GiveGoldViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/GiveGoldViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/GoldPurchasePromptViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/GoldPurchasePromptViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/IUploadFinishedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/IUploadFinishedHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/LeaderboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/LeaderboardViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PageHeaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PageHeaderViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModelPhotoIdArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/PhotoDetailsViewModelPhotoIdArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ProfileViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ProfileViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ProfileViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ShareTargetUploadFinishedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ShareTargetUploadFinishedHandler.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SignInPromptViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SignInPromptViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SignInViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/SignInViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModelThumbnailArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/StreamViewModelThumbnailArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadPhotoControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadPhotoControlViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModelEditPhotoArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/UploadViewModelEditPhotoArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ViewModelArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ViewModelArgs.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/WelcomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/ViewModels/WelcomeViewModel.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/AboutPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/AnimationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/AnimationHelper.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/AppShell.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/AppShell.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/BasePage.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CameraPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CameraPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CameraPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CameraPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesChooserDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesChooserDialog.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesChooserDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesChooserDialog.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CategoriesPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CropPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CropPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/CropPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/CropPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/DebugPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/DebugPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/DebugPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/DebugPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/GiveGoldDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/GiveGoldDialog.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/GiveGoldDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/GiveGoldDialog.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/ICameraView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/ICameraView.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/ICropControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/ICropControl.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/IDialogService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/LeaderboardsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/LeaderboardsPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/LeaderboardsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/LeaderboardsPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/MessageDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/MessageDialogService.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/PhotoDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/PhotoDetailsPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/PhotoDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/PhotoDetailsPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/ProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/ProfilePage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/ProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/ProfilePage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/SelectedRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/SelectedRegion.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/SignInPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/SignInPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/StreamPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/StreamPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/StreamPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/StreamPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/UploadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/UploadPage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/UploadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/UploadPage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/WelcomePage.xaml -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/Views/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/Views/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /PhotoSharingApp/PhotoSharingApp.Universal/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/PhotoSharingApp/PhotoSharingApp.Universal/project.json -------------------------------------------------------------------------------- /ProjectOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/ProjectOverview.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TechnicalDeepDive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Appsample-Photosharing/HEAD/TechnicalDeepDive.md --------------------------------------------------------------------------------