├── .gitignore ├── CONTRIBUTING.md ├── Images └── LunchSchedulerBanner.PNG ├── LICENSE ├── LunchScheduler.Api ├── Controllers │ ├── ControllerBase.cs │ ├── FriendsController.cs │ ├── GroupsController.cs │ ├── InvitationController.cs │ ├── LoginController.cs │ ├── LunchController.cs │ ├── MeController.cs │ └── RestaurantsController.cs ├── LunchScheduler.Api.csproj ├── Program.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── LunchScheduler.Models ├── AuthenticationProviderKind.cs ├── Constants.cs ├── Friendship.cs ├── Group.cs ├── GroupMembership.cs ├── Invitation.cs ├── InvitationResponseKind.cs ├── Lunch.cs ├── LunchScheduler.Models.csproj ├── LunchState.cs ├── ModelBase.cs ├── Restaurant.cs └── User.cs ├── LunchScheduler.Repository ├── Data │ ├── Restaurants.json │ └── Users.json ├── ILunchRepository.cs ├── LunchContext.cs ├── LunchDemoRepository.cs ├── LunchRestRepository.cs ├── LunchScheduler.Repository.csproj └── Migrations │ ├── 20171005171403_Init.Designer.cs │ ├── 20171005171403_Init.cs │ └── LunchContextModelSnapshot.cs ├── LunchScheduler.sln ├── LunchScheduler ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AppList │ │ ├── AppList.scale-100.png │ │ ├── AppList.scale-125.png │ │ ├── AppList.scale-150.png │ │ ├── AppList.scale-200.png │ │ ├── AppList.scale-400.png │ │ ├── AppList.targetsize-16.png │ │ ├── AppList.targetsize-20.png │ │ ├── AppList.targetsize-24.png │ │ ├── AppList.targetsize-256.png │ │ ├── AppList.targetsize-30.png │ │ ├── AppList.targetsize-32.png │ │ ├── AppList.targetsize-36.png │ │ ├── AppList.targetsize-40.png │ │ ├── AppList.targetsize-48.png │ │ ├── AppList.targetsize-60.png │ │ ├── AppList.targetsize-64.png │ │ ├── AppList.targetsize-72.png │ │ ├── AppList.targetsize-80.png │ │ └── AppList.targetsize-96.png │ ├── Large │ │ ├── Large310x310Logo.scale-100.png │ │ ├── Large310x310Logo.scale-125.png │ │ ├── Large310x310Logo.scale-150.png │ │ ├── Large310x310Logo.scale-200.png │ │ └── Large310x310Logo.scale-400.png │ ├── Medium │ │ ├── Medium150x150Logo.scale-100.png │ │ ├── Medium150x150Logo.scale-125.png │ │ ├── Medium150x150Logo.scale-150.png │ │ ├── Medium150x150Logo.scale-200.png │ │ └── Medium150x150Logo.scale-400.png │ ├── Resources.resw │ ├── Small │ │ ├── Small71x71Logo.scale-100.png │ │ ├── Small71x71Logo.scale-125.png │ │ ├── Small71x71Logo.scale-150.png │ │ ├── Small71x71Logo.scale-200.png │ │ └── Small71x71Logo.scale-400.png │ ├── SplashScreen │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ └── SplashScreen.scale-400.png │ ├── Store │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ └── StoreLogo.scale-400.png │ ├── WebAccountManager │ │ ├── DemoIcon.png │ │ └── FacebookIcon.png │ └── Wide │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png ├── Common │ ├── LocationHelper.cs │ ├── NavigationService.cs │ ├── Observable.cs │ └── ShellNavigationItem.cs ├── Converters │ ├── BytesToBitmapImageConverter.cs │ ├── DateStringFormatConverter.cs │ └── StateToGlyphConverter.cs ├── CustomControls │ ├── LunchDetailsDialog.xaml │ ├── LunchDetailsDialog.xaml.cs │ ├── MyLunches.xaml │ ├── MyLunches.xaml.cs │ ├── ResponsePane.xaml │ └── ResponsePane.xaml.cs ├── LunchScheduler.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Styles │ └── ControlTemplates.xaml ├── ViewModels │ ├── AuthenticationViewModel.cs │ ├── MainViewModel.cs │ └── MappedLocation.cs └── Views │ ├── CreateLunchPage.xaml │ ├── CreateLunchPage.xaml.cs │ ├── DateTimePage.xaml │ ├── DateTimePage.xaml.cs │ ├── FriendsPage.xaml │ ├── FriendsPage.xaml.cs │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── LunchesPage.xaml │ ├── LunchesPage.xaml.cs │ ├── OverviewPage.xaml │ ├── OverviewPage.xaml.cs │ ├── PlacesPage.xaml │ └── PlacesPage.xaml.cs ├── README.md ├── SECURITY.md └── ThirdPartyNotices.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Images/LunchSchedulerBanner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/Images/LunchSchedulerBanner.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LICENSE -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/ControllerBase.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/FriendsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/FriendsController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/GroupsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/GroupsController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/InvitationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/InvitationController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/LoginController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/LunchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/LunchController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/MeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/MeController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Controllers/RestaurantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Controllers/RestaurantsController.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/LunchScheduler.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/LunchScheduler.Api.csproj -------------------------------------------------------------------------------- /LunchScheduler.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Program.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/Startup.cs -------------------------------------------------------------------------------- /LunchScheduler.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/appsettings.Development.json -------------------------------------------------------------------------------- /LunchScheduler.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Api/appsettings.json -------------------------------------------------------------------------------- /LunchScheduler.Models/AuthenticationProviderKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/AuthenticationProviderKind.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Constants.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Friendship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Friendship.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Group.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/GroupMembership.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/GroupMembership.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Invitation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Invitation.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/InvitationResponseKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/InvitationResponseKind.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Lunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Lunch.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/LunchScheduler.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/LunchScheduler.Models.csproj -------------------------------------------------------------------------------- /LunchScheduler.Models/LunchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/LunchState.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/ModelBase.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/Restaurant.cs -------------------------------------------------------------------------------- /LunchScheduler.Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Models/User.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/Data/Restaurants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/Data/Restaurants.json -------------------------------------------------------------------------------- /LunchScheduler.Repository/Data/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/Data/Users.json -------------------------------------------------------------------------------- /LunchScheduler.Repository/ILunchRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/ILunchRepository.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/LunchContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/LunchContext.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/LunchDemoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/LunchDemoRepository.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/LunchRestRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/LunchRestRepository.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/LunchScheduler.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/LunchScheduler.Repository.csproj -------------------------------------------------------------------------------- /LunchScheduler.Repository/Migrations/20171005171403_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/Migrations/20171005171403_Init.Designer.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/Migrations/20171005171403_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/Migrations/20171005171403_Init.cs -------------------------------------------------------------------------------- /LunchScheduler.Repository/Migrations/LunchContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.Repository/Migrations/LunchContextModelSnapshot.cs -------------------------------------------------------------------------------- /LunchScheduler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler.sln -------------------------------------------------------------------------------- /LunchScheduler/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/App.xaml -------------------------------------------------------------------------------- /LunchScheduler/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/App.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-16.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-20.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-24.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-256.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-30.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-32.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-36.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-40.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-48.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-60.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-64.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-72.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-80.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/AppList/AppList.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/AppList/AppList.targetsize-96.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Large/Large310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Large/Large310x310Logo.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Large/Large310x310Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Large/Large310x310Logo.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Large/Large310x310Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Large/Large310x310Logo.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Large/Large310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Large/Large310x310Logo.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Large/Large310x310Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Large/Large310x310Logo.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Medium/Medium150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Medium/Medium150x150Logo.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Medium/Medium150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Medium/Medium150x150Logo.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Medium/Medium150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Medium/Medium150x150Logo.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Medium/Medium150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Medium/Medium150x150Logo.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Medium/Medium150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Medium/Medium150x150Logo.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Resources.resw -------------------------------------------------------------------------------- /LunchScheduler/Assets/Small/Small71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Small/Small71x71Logo.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Small/Small71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Small/Small71x71Logo.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Small/Small71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Small/Small71x71Logo.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Small/Small71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Small/Small71x71Logo.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Small/Small71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Small/Small71x71Logo.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/SplashScreen/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/SplashScreen/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/SplashScreen/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/SplashScreen/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/SplashScreen/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/SplashScreen/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/SplashScreen/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/SplashScreen/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/SplashScreen/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/SplashScreen/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Store/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Store/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Store/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Store/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Store/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Store/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Store/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Store/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Store/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Store/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/WebAccountManager/DemoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/WebAccountManager/DemoIcon.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/WebAccountManager/FacebookIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/WebAccountManager/FacebookIcon.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Wide/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Wide/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Wide/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Wide/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Wide/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Wide/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Wide/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Wide/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /LunchScheduler/Assets/Wide/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Assets/Wide/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /LunchScheduler/Common/LocationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Common/LocationHelper.cs -------------------------------------------------------------------------------- /LunchScheduler/Common/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Common/NavigationService.cs -------------------------------------------------------------------------------- /LunchScheduler/Common/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Common/Observable.cs -------------------------------------------------------------------------------- /LunchScheduler/Common/ShellNavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Common/ShellNavigationItem.cs -------------------------------------------------------------------------------- /LunchScheduler/Converters/BytesToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Converters/BytesToBitmapImageConverter.cs -------------------------------------------------------------------------------- /LunchScheduler/Converters/DateStringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Converters/DateStringFormatConverter.cs -------------------------------------------------------------------------------- /LunchScheduler/Converters/StateToGlyphConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Converters/StateToGlyphConverter.cs -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/LunchDetailsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/LunchDetailsDialog.xaml -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/LunchDetailsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/LunchDetailsDialog.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/MyLunches.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/MyLunches.xaml -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/MyLunches.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/MyLunches.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/ResponsePane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/ResponsePane.xaml -------------------------------------------------------------------------------- /LunchScheduler/CustomControls/ResponsePane.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/CustomControls/ResponsePane.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/LunchScheduler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/LunchScheduler.csproj -------------------------------------------------------------------------------- /LunchScheduler/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/MainPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/MainPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Package.appxmanifest -------------------------------------------------------------------------------- /LunchScheduler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LunchScheduler/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Properties/Default.rd.xml -------------------------------------------------------------------------------- /LunchScheduler/Styles/ControlTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Styles/ControlTemplates.xaml -------------------------------------------------------------------------------- /LunchScheduler/ViewModels/AuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/ViewModels/AuthenticationViewModel.cs -------------------------------------------------------------------------------- /LunchScheduler/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /LunchScheduler/ViewModels/MappedLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/ViewModels/MappedLocation.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/CreateLunchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/CreateLunchPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/CreateLunchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/CreateLunchPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/DateTimePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/DateTimePage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/DateTimePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/DateTimePage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/FriendsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/FriendsPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/FriendsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/FriendsPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/LoginPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/LoginPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/LunchesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/LunchesPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/LunchesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/LunchesPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/OverviewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/OverviewPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/OverviewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/OverviewPage.xaml.cs -------------------------------------------------------------------------------- /LunchScheduler/Views/PlacesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/PlacesPage.xaml -------------------------------------------------------------------------------- /LunchScheduler/Views/PlacesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/LunchScheduler/Views/PlacesPage.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-lunch-scheduler/HEAD/ThirdPartyNotices.txt --------------------------------------------------------------------------------