gitextract__mzsbjjj/ ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── design/ │ └── BuildCast.xd └── src/ ├── BuildCast/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets/ │ │ ├── BuildCastIcon.ai │ │ └── build2016windowsdevfeed.xml │ ├── BuildCast.csproj │ ├── Controls/ │ │ ├── CustomMTC.xaml │ │ ├── CustomMTC.xaml.cs │ │ ├── CustomMediaPlayer.xaml │ │ ├── CustomMediaPlayer.xaml.cs │ │ ├── RemoteControl.xaml │ │ ├── RemoteControl.xaml.cs │ │ ├── TimeControl.cs │ │ └── Timeline.cs │ ├── DataModel/ │ │ ├── Episode.cs │ │ ├── EpisodePlaybackState.cs │ │ ├── EpisodeWithState.cs │ │ ├── Favorite.cs │ │ ├── Feed.cs │ │ ├── FeedStore.cs │ │ ├── InkNote.cs │ │ ├── InkNoteData.cs │ │ ├── LocalStorageContext.cs │ │ └── NowPlayingState.cs │ ├── GlobalSuppressions.cs │ ├── Helpers/ │ │ ├── AsyncHelpers.cs │ │ ├── BackgroundDownloadHelper.cs │ │ ├── BufferingVisualManager.cs │ │ ├── DateTimeHelper.cs │ │ ├── EnumToBooleanConverter.cs │ │ ├── EpisodeCommands.cs │ │ ├── Json.cs │ │ ├── LinqExtensions.cs │ │ ├── NavigationAnimationHelpers.cs │ │ ├── RelayCommand.cs │ │ ├── SettingsStorageExtensions.cs │ │ ├── TitleBarHelper.cs │ │ ├── UIHelpers.cs │ │ ├── ValueSetHelper.cs │ │ └── VisualHelpers.cs │ ├── Microsoft.BuildCast.ruleset │ ├── Migrations/ │ │ ├── 20170927020747_initial.Designer.cs │ │ ├── 20170927020747_initial.cs │ │ └── LocalStorageContextModelSnapshot.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Services/ │ │ ├── ElementThemeExtended.cs │ │ ├── IAvailableSystemsObserver.cs │ │ ├── IFullscreenPage.cs │ │ ├── IPlayerService.cs │ │ ├── IRemoteConnection.cs │ │ ├── IRemotePlayerService.cs │ │ ├── IRemoteSystemDescription.cs │ │ ├── Navigation/ │ │ │ ├── FrameAdapter.cs │ │ │ ├── IFrameAdapter.cs │ │ │ ├── INavigableTo.cs │ │ │ ├── INavigationCommand.cs │ │ │ ├── INavigationService.cs │ │ │ ├── IPageWithViewModel.cs │ │ │ └── NavigationService.cs │ │ ├── PlayerService.cs │ │ ├── RemotePlayService.cs │ │ ├── ThemeSelectorService.cs │ │ └── ViewModeService.cs │ ├── Strings/ │ │ └── en-us/ │ │ └── Resources.resw │ ├── Styles/ │ │ ├── Common.xaml │ │ └── Settings.xaml │ ├── Themes/ │ │ ├── Branded.xaml │ │ ├── BrandedXbox.xaml │ │ ├── Generic.xaml │ │ └── Stock.xaml │ ├── ViewModels/ │ │ ├── DownloadsViewModel.cs │ │ ├── EpisodeDetailsViewModel.cs │ │ ├── FavoritesViewModel.cs │ │ ├── FeedDetailsViewModel.cs │ │ ├── HomeViewModel.cs │ │ ├── InkNoteViewModel.cs │ │ ├── NotesViewModel.cs │ │ ├── PlayerViewModel.cs │ │ └── SettingsViewModel.cs │ └── Views/ │ ├── Downloads.xaml │ ├── Downloads.xaml.cs │ ├── EpisodeDetails.xaml │ ├── EpisodeDetails.xaml.cs │ ├── Favorites.xaml │ ├── Favorites.xaml.cs │ ├── FeedDetails.xaml │ ├── FeedDetails.xaml.cs │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── InkNote.xaml │ ├── InkNote.xaml.cs │ ├── NavigationRoot.xaml │ ├── NavigationRoot.xaml.cs │ ├── NoteDataTemplateSelector.cs │ ├── Notes.xaml │ ├── Notes.xaml.cs │ ├── Player.xaml │ ├── Player.xaml.cs │ ├── PopupPlayer.xaml │ ├── PopupPlayer.xaml.cs │ ├── SettingsPage.xaml │ └── SettingsPage.xaml.cs └── BuildCast.sln