├── .azdo └── dev-uwp.yml ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── _config.yml ├── helper_scripts ├── Find-WindowsSDKVersions.ps1 ├── Install-WindowsSDK.ps1 ├── Install-WindowsSdkISO.ps1 └── Maui │ ├── deploy-maui.ps1 │ └── deploy-maui.sh └── src ├── MvpApi.Common ├── Annotations.cs ├── CustomEventArgs │ ├── ApiServiceEventArgs.cs │ └── LoginChangedEventArgs.cs ├── Extensions │ ├── ContributionExtensions.cs │ └── UriExtensions.cs ├── Interfaces │ ├── IExpandableItemView.cs │ ├── IFlyoutView.cs │ ├── INavigationHandler.cs │ └── IScrollableView.cs ├── Models │ ├── ActivityTechnologyViewModel.cs │ ├── ActivityTypeViewModel.cs │ ├── ActivityViewModel.cs │ ├── AwardAnswerViewModel.cs │ ├── AwardQuestionViewModel.cs │ ├── AwardRecognitionViewModel.cs │ ├── CertificationViewModel.cs │ ├── ContentMetadata.cs │ ├── ContributionAreasRootItem.cs │ ├── ContributionTechnologyModel.cs │ ├── ContributionTypeModel.cs │ ├── ContributionViewModel.cs │ ├── ContributionsModel.cs │ ├── Kudos.cs │ ├── MvpHighlightViewModel.cs │ ├── Navigation │ │ └── ViewType.cs │ ├── OnlineIdentity.cs │ ├── OnlineIdentityViewModel.cs │ ├── ProfileViewModel.cs │ ├── QuestionnaireItem.cs │ ├── SharingPreference.cs │ ├── SocialNetwork.cs │ ├── SocialNetworkStatusCode.cs │ ├── SocialNetworkViewModel.cs │ ├── UploadStatus.cs │ └── VisibilityViewModel.cs └── MvpApi.Common.csproj ├── MvpApi.Services ├── Apis │ ├── Definitions │ │ ├── MVP_Production_2022.openapi.json │ │ ├── MVP_Production_2022.openapi.yaml │ │ └── code_gen_settings.json │ └── MvpApiService.cs ├── Data │ └── WelcomeMessageService.cs ├── Json │ ├── ContributionAreasResponse_2022.json │ └── ContributionTypesResponse_2022.json ├── Models │ └── WelcomeMessage.cs ├── MvpApi.Services.csproj └── Utilities │ ├── ExceptionLogger.cs │ ├── ImportService.cs │ ├── ServiceConstants.cs │ └── StorageHelpers.cs ├── MvpApi.Tests ├── MvpApi.Tests.csproj ├── ServicesTests │ └── MvpApiServiceTests.cs └── UtilitiesTests │ └── StorageHelperTests.cs ├── MvpApi.Uwp ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── LottieFiles │ │ ├── AlienIdScan.json │ │ ├── ChartLoading.json │ │ └── PaperPlane.json │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Common │ ├── DateTimeMonthKeyLookup.cs │ └── TechnologyKeyLookup.cs ├── Controls │ └── TechnologyAreasListView.cs ├── Converters │ ├── BoolToIconConverter.cs │ ├── ContributionTypeNameToBrushConverter.cs │ ├── DateTimeToDateTimeOffsetConverter.cs │ ├── DoubleToIntConverter.cs │ ├── MvcContentUrlConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── PathToBitmapImageConverter.cs │ ├── PrivacyLevelToBrushConverter.cs │ ├── StringToUriConverter.cs │ ├── ThresholdConverter.cs │ ├── UploadStatusToBoolConverter.cs │ └── UploadStatusToBrushConverter.cs ├── Dialogs │ ├── AdditionalTechnologyAreasPicker.xaml │ ├── AdditionalTechnologyAreasPicker.xaml.cs │ ├── AwardQuestionsDialog.xaml │ ├── AwardQuestionsDialog.xaml.cs │ ├── AwardYearDateRangeEditorDialog.xaml │ ├── AwardYearDateRangeEditorDialog.xaml.cs │ ├── ContributionEditorDialog.xaml │ ├── ContributionEditorDialog.xaml.cs │ ├── GoodbyeDialog.xaml │ ├── GoodbyeDialog.xaml.cs │ ├── ImportContributionsDialog.xaml │ ├── ImportContributionsDialog.xaml.cs │ ├── TutorialDialog.xaml │ └── TutorialDialog.xaml.cs ├── Images │ ├── 4starStar.png │ ├── CoffeeKudo.png │ ├── DinnerKudo.png │ ├── LunchKudo.png │ ├── MvpIcon.png │ └── VideoAd.png ├── MvpApi.Uwp.csproj ├── Package.StoreAssociation.xml ├── Package.appxmanifest ├── Package.xml ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Selectors │ ├── ContributionTypeNameCellStyleSelector.cs │ └── TechAreaGroupStyleSelector.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── AddContributionsViewModel.cs │ ├── ContributionDetailViewModel.cs │ ├── ContributionEditorDialogViewModel.cs │ ├── HomeViewModel.cs │ ├── KudosViewModel.cs │ ├── PageViewModelBase.cs │ ├── ProfileViewModel.cs │ ├── SettingsViewModel.cs │ ├── ShellViewModel.cs │ └── readme.md ├── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── AddContributionsPage.xaml │ ├── AddContributionsPage.xaml.cs │ ├── ContributionDetailPage.xaml │ ├── ContributionDetailPage.xaml.cs │ ├── HomePage.xaml │ ├── HomePage.xaml.cs │ ├── KudosPage.xaml │ ├── KudosPage.xaml.cs │ ├── ProfilePage.xaml │ ├── ProfilePage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── ShellPage.xaml │ └── ShellPage.xaml.cs └── _pkginfo.txt ├── MvpApi.UwpBackgroundTasks ├── MvpApi.UwpBackgroundTasks.csproj ├── Properties │ └── AssemblyInfo.cs └── UpdateTask.cs ├── MvpApi.sln ├── MvpApi.slnx ├── MvpApi_Maui.sln ├── MvpApi_Maui.slnx ├── MvpApi_Tests.sln ├── MvpApi_Tests.slnx ├── MvpApi_UWP.sln ├── MvpApi_UWP.slnx ├── MvpApi_WPF.sln ├── MvpApi_WPF.slnx ├── MvpApi_WinUI.sln ├── MvpApi_WinUI.slnx ├── MvpCompanion.Maui ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── BehaviorBase.cs │ └── EventToCommandBehavior.cs ├── Converters │ ├── ActiveTabConverter.cs │ ├── BoolToIconConverter.cs │ ├── ConfigurableBoolConverter.cs │ ├── ContributionTypeNameToBrushConverter.cs │ ├── DoubleToIntConverter.cs │ ├── IntToDoubleConverter.cs │ ├── MvcContentUrlConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── PrivacyLevelToColorConverter.cs │ ├── StringToUriConverter.cs │ ├── ThresholdConverter.cs │ ├── UploadStatusToBrushConverter.cs │ └── ValueWhenConverter.cs ├── Directory.Build.props ├── Directory.Build.targets ├── MauiProgram.cs ├── Models │ └── Authentication │ │ ├── AuthHelpers.cs │ │ └── AuthResponse.cs ├── MvpCompanion.Maui.csproj ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── NotificationService.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── NotificationService.cs │ │ ├── Program.cs │ │ └── trayicon.png │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NotificationService.cs │ │ ├── Package.appxmanifest │ │ ├── app.manifest │ │ └── trayicon.ico │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── NotificationService.cs │ │ └── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ ├── fa-solid-900.ttf │ │ └── telerikfontexamples.ttf │ ├── Images │ │ ├── add_icon.svg │ │ ├── coffee.png │ │ ├── dinner.png │ │ ├── dotnet_bot.svg │ │ ├── four_star.png │ │ ├── hero.png │ │ ├── lunch.png │ │ ├── mvp_companion_logo_150.png │ │ ├── mvp_icon_dark.png │ │ ├── search_icon.svg │ │ ├── tab_account.svg │ │ ├── tab_account_on.svg │ │ ├── tab_briefcase.svg │ │ ├── tab_briefcase_on.svg │ │ ├── tab_home.svg │ │ ├── tab_home_on.svg │ │ ├── tab_information.svg │ │ ├── tab_information_on.svg │ │ ├── tab_settings.svg │ │ ├── tab_settings_on.svg │ │ ├── tab_upload.svg │ │ ├── tab_upload_on.svg │ │ └── video_ad.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Styles │ │ ├── DefaultTheme.xaml │ │ ├── DefaultTheme.xaml.cs │ │ └── IconFont.cs │ ├── appicon.svg │ └── appiconfg.svg ├── Selectors │ └── GroupHeaderTemplateSelector.cs ├── Services │ ├── INotificationService.cs │ └── ServiceProvider.cs ├── ShellPage.xaml ├── ShellPage.xaml.cs ├── ViewModels │ ├── HomeViewModel.cs │ ├── LoginViewModel.cs │ └── ShellViewModel.cs └── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── Detail.xaml │ ├── Detail.xaml.cs │ ├── Help.xaml │ ├── Help.xaml.cs │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── Login.xaml │ ├── Login.xaml.cs │ ├── Profile.xaml │ ├── Profile.xaml.cs │ ├── Settings.xaml │ ├── Settings.xaml.cs │ ├── Upload.xaml │ └── Upload.xaml.cs ├── MvpCompanion.UI.Common ├── Extensions │ └── ContributionExtensions.cs ├── Helpers │ ├── DesignTimeHelpers.cs │ ├── DiagnosticsHelper.cs │ ├── FeedbackHelpers.cs │ ├── PaletteHelper.cs │ ├── TaskUtilities.cs │ └── UwpExceptionLogger.cs ├── MvpCompanion.UI.Common.csproj └── Properties │ ├── AssemblyInfo.cs │ └── MvpCompanion.UI.Common.rd.xml ├── MvpCompanion.UI.WinUI (Package) ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MvpCompanion.UI.WinUI (Package).wapproj └── Package.appxmanifest ├── MvpCompanion.UI.WinUI ├── App.xaml ├── App.xaml.cs ├── Common │ ├── DateTimeMonthKeyLookup.cs │ ├── ExternalConstants.cs │ └── TechnologyKeyLookup.cs ├── Converters │ ├── BoolToIconConverter.cs │ ├── ConfigurableBoolConverter.cs │ ├── ContributionTypeNameToBrushConverter.cs │ ├── DateTimeToDateTimeOffsetConverter.cs │ ├── DoubleToIntConverter.cs │ ├── IntToDoubleConverter.cs │ ├── MvcContentUrlConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── PathToBitmapImageConverter.cs │ ├── PrivacyLevelToBrushConverter.cs │ ├── StringFormatConverter.cs │ ├── StringToUriConverter.cs │ ├── ThresholdConverter.cs │ ├── UploadStatusToBrushConverter.cs │ └── ValueWhenConverter.cs ├── Dialogs │ ├── AdditionalTechnologyAreasPicker.xaml │ ├── AdditionalTechnologyAreasPicker.xaml.cs │ ├── AwardQuestionsDialog.xaml │ ├── AwardQuestionsDialog.xaml.cs │ ├── LoginDialog.xaml │ ├── LoginDialog.xaml.cs │ ├── TutorialDialog.xaml │ └── TutorialDialog.xaml.cs ├── Extensions │ ├── ContributionExtensions.cs │ ├── IEnumerableExtensions.cs │ └── StringExtensions.cs ├── Helpers │ ├── DesignTimeHelpers.cs │ ├── DiagnosticsHelper.cs │ ├── FeedbackHelpers.cs │ ├── PaletteHelper.cs │ ├── TaskUtilities.cs │ └── UwpExceptionLogger.cs ├── Images │ ├── 4starStar.png │ ├── CoffeeKudo.png │ ├── DinnerKudo.png │ ├── HeroBackground.png │ ├── LargeTile.png │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── LunchKudo.png │ ├── MainIcon.ico │ ├── MvpCompanionIcon.png │ ├── MvpIcon.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup(1).png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── VideoAd.png │ ├── Wide310x150Logo.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── CustomIKeyLookup.cs │ ├── Product.cs │ └── ProductsGenerator.cs ├── MvpCompanion.UI.WinUI.csproj ├── Package.appxmanifest ├── Properties │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── Selectors │ ├── ContributionTypeNameCellStyleSelector.cs │ ├── GroupHeaderTemplateSelector.cs │ └── TechAreaGroupStyleSelector.cs ├── Styles │ └── CustomDataGridStyles.xaml ├── ViewModels │ ├── AboutViewModel.cs │ ├── AddContributionsViewModel.cs │ ├── ContributionDetailViewModel.cs │ ├── HomeViewModel.cs │ ├── KudosViewModel.cs │ ├── ProfileViewModel.cs │ ├── SettingsViewModel.cs │ ├── ShellViewModel.cs │ ├── TabViewModelBase.cs │ └── readme.md ├── Views │ ├── AboutView.xaml │ ├── AboutView.xaml.cs │ ├── AddContributionsView.xaml │ ├── AddContributionsView.xaml.cs │ ├── ContributionDetailView.xaml │ ├── ContributionDetailView.xaml.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── KudosView.xaml │ ├── KudosView.xaml.cs │ ├── ProfileView.xaml │ ├── ProfileView.xaml.cs │ ├── SettingsView.xaml │ ├── SettingsView.xaml.cs │ ├── ShellView.xaml │ └── ShellView.xaml.cs └── app.manifest ├── MvpCompanion.Wpf.Packaging ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── MvpCompanion.Wpf.Packaging.wapproj ├── Package.StoreAssociation.xml └── Package.appxmanifest ├── MvpCompanion.Wpf ├── App.xaml ├── App.xaml.cs ├── Converters │ ├── BoolToIconConverter.cs │ ├── ContributionTypeNameToBrushConverter.cs │ ├── DateTimeToDateTimeOffsetConverter.cs │ ├── DoubleToIntConverter.cs │ ├── MvcContentUrlConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── PathToBitmapImageConverter.cs │ ├── PrivacyLevelToBrushConverter.cs │ ├── StringToUriConverter.cs │ ├── ThresholdConverter.cs │ ├── UploadStatusToBoolConverter.cs │ ├── UploadStatusToBrushConverter.cs │ └── ValueWhenConverter.cs ├── Helpers │ ├── DesignTimeHelpers.cs │ ├── DiagnosticsHelper.cs │ ├── ExceptionLogger.cs │ ├── FeedbackHelpers.cs │ ├── NetworkHelper.cs │ ├── PaletteHelper.cs │ ├── PersonalizationHelpers.cs │ └── TaskUtilities.cs ├── Images │ ├── 4starStar.png │ ├── CoffeeKudo.png │ ├── DinnerKudo.png │ ├── HeroBackground.png │ ├── LunchKudo.png │ ├── MainIcon.ico │ ├── MvpCompanionIcon.png │ ├── MvpIcon.png │ └── VideoAd.png ├── LoginWindow.xaml ├── LoginWindow.xaml.cs ├── Models │ ├── NavItemModel.cs │ └── ViewName.cs ├── MvpCompanion.Wpf.csproj ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── Selectors │ ├── ContributionTypeNameCellStyleSelector.cs │ ├── TechAreaGroupStyleSelector.cs │ └── ViewContentTemplateSelector.cs ├── ShellWindow.xaml ├── ShellWindow.xaml.cs ├── Styles │ └── GeneralStyles.xaml ├── ViewModels │ ├── AboutViewModel.cs │ ├── AddContributionsViewModel.cs │ ├── ContributionDetailViewModel.cs │ ├── ContributionEditorDialogViewModel.cs │ ├── HomeViewModel.cs │ ├── KudosViewModel.cs │ ├── ProfileViewModel.cs │ ├── SettingsViewModel.cs │ ├── ShellViewModel.cs │ └── readme.md └── Views │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── KudosView.xaml │ ├── KudosView.xaml.cs │ ├── ProfileView.xaml │ ├── ProfileView.xaml.cs │ ├── SettingsView.xaml │ └── SettingsView.xaml.cs └── NuGet.Config /.azdo/dev-uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.azdo/dev-uwp.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/_config.yml -------------------------------------------------------------------------------- /helper_scripts/Find-WindowsSDKVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/helper_scripts/Find-WindowsSDKVersions.ps1 -------------------------------------------------------------------------------- /helper_scripts/Install-WindowsSDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/helper_scripts/Install-WindowsSDK.ps1 -------------------------------------------------------------------------------- /helper_scripts/Install-WindowsSdkISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/helper_scripts/Install-WindowsSdkISO.ps1 -------------------------------------------------------------------------------- /helper_scripts/Maui/deploy-maui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/helper_scripts/Maui/deploy-maui.ps1 -------------------------------------------------------------------------------- /helper_scripts/Maui/deploy-maui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/helper_scripts/Maui/deploy-maui.sh -------------------------------------------------------------------------------- /src/MvpApi.Common/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Annotations.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/CustomEventArgs/ApiServiceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/CustomEventArgs/ApiServiceEventArgs.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/CustomEventArgs/LoginChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/CustomEventArgs/LoginChangedEventArgs.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Extensions/ContributionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Extensions/ContributionExtensions.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Interfaces/IExpandableItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Interfaces/IExpandableItemView.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Interfaces/IFlyoutView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Interfaces/IFlyoutView.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Interfaces/INavigationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Interfaces/INavigationHandler.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Interfaces/IScrollableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Interfaces/IScrollableView.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ActivityTechnologyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ActivityTechnologyViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ActivityTypeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ActivityTypeViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ActivityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ActivityViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/AwardAnswerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/AwardAnswerViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/AwardQuestionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/AwardQuestionViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/AwardRecognitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/AwardRecognitionViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/CertificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/CertificationViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContentMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContentMetadata.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContributionAreasRootItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContributionAreasRootItem.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContributionTechnologyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContributionTechnologyModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContributionTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContributionTypeModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContributionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContributionViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ContributionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ContributionsModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/Kudos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/Kudos.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/MvpHighlightViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/MvpHighlightViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/Navigation/ViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/Navigation/ViewType.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/OnlineIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/OnlineIdentity.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/OnlineIdentityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/OnlineIdentityViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/ProfileViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/QuestionnaireItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/QuestionnaireItem.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/SharingPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/SharingPreference.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/SocialNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/SocialNetwork.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/SocialNetworkStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/SocialNetworkStatusCode.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/SocialNetworkViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/SocialNetworkViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/UploadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/UploadStatus.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/Models/VisibilityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/Models/VisibilityViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Common/MvpApi.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Common/MvpApi.Common.csproj -------------------------------------------------------------------------------- /src/MvpApi.Services/Apis/Definitions/MVP_Production_2022.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Apis/Definitions/MVP_Production_2022.openapi.json -------------------------------------------------------------------------------- /src/MvpApi.Services/Apis/Definitions/MVP_Production_2022.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Apis/Definitions/MVP_Production_2022.openapi.yaml -------------------------------------------------------------------------------- /src/MvpApi.Services/Apis/Definitions/code_gen_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Apis/Definitions/code_gen_settings.json -------------------------------------------------------------------------------- /src/MvpApi.Services/Apis/MvpApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Apis/MvpApiService.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/Data/WelcomeMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Data/WelcomeMessageService.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/Json/ContributionAreasResponse_2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Json/ContributionAreasResponse_2022.json -------------------------------------------------------------------------------- /src/MvpApi.Services/Json/ContributionTypesResponse_2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Json/ContributionTypesResponse_2022.json -------------------------------------------------------------------------------- /src/MvpApi.Services/Models/WelcomeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Models/WelcomeMessage.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/MvpApi.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/MvpApi.Services.csproj -------------------------------------------------------------------------------- /src/MvpApi.Services/Utilities/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Utilities/ExceptionLogger.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/Utilities/ImportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Utilities/ImportService.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/Utilities/ServiceConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Utilities/ServiceConstants.cs -------------------------------------------------------------------------------- /src/MvpApi.Services/Utilities/StorageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Services/Utilities/StorageHelpers.cs -------------------------------------------------------------------------------- /src/MvpApi.Tests/MvpApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Tests/MvpApi.Tests.csproj -------------------------------------------------------------------------------- /src/MvpApi.Tests/ServicesTests/MvpApiServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Tests/ServicesTests/MvpApiServiceTests.cs -------------------------------------------------------------------------------- /src/MvpApi.Tests/UtilitiesTests/StorageHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Tests/UtilitiesTests/StorageHelperTests.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/App.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LottieFiles/AlienIdScan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LottieFiles/AlienIdScan.json -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LottieFiles/ChartLoading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LottieFiles/ChartLoading.json -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/LottieFiles/PaperPlane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/LottieFiles/PaperPlane.json -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Common/DateTimeMonthKeyLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Common/DateTimeMonthKeyLookup.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Common/TechnologyKeyLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Common/TechnologyKeyLookup.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Controls/TechnologyAreasListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Controls/TechnologyAreasListView.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/BoolToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/BoolToIconConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/ContributionTypeNameToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/ContributionTypeNameToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/DateTimeToDateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/DateTimeToDateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/DoubleToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/DoubleToIntConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/MvcContentUrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/MvcContentUrlConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/PathToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/PathToBitmapImageConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/PrivacyLevelToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/PrivacyLevelToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/ThresholdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/ThresholdConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/UploadStatusToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/UploadStatusToBoolConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Converters/UploadStatusToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Converters/UploadStatusToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AdditionalTechnologyAreasPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AdditionalTechnologyAreasPicker.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AdditionalTechnologyAreasPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AdditionalTechnologyAreasPicker.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AwardQuestionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AwardQuestionsDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AwardQuestionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AwardQuestionsDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AwardYearDateRangeEditorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AwardYearDateRangeEditorDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/AwardYearDateRangeEditorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/AwardYearDateRangeEditorDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/ContributionEditorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/ContributionEditorDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/ContributionEditorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/ContributionEditorDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/GoodbyeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/GoodbyeDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/GoodbyeDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/GoodbyeDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/ImportContributionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/ImportContributionsDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/ImportContributionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/ImportContributionsDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/TutorialDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/TutorialDialog.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Dialogs/TutorialDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Dialogs/TutorialDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/4starStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/4starStar.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/CoffeeKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/CoffeeKudo.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/DinnerKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/DinnerKudo.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/LunchKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/LunchKudo.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/MvpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/MvpIcon.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Images/VideoAd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Images/VideoAd.png -------------------------------------------------------------------------------- /src/MvpApi.Uwp/MvpApi.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/MvpApi.Uwp.csproj -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Package.xml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Selectors/ContributionTypeNameCellStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Selectors/ContributionTypeNameCellStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Selectors/TechAreaGroupStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Selectors/TechAreaGroupStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/AddContributionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/AddContributionsViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/ContributionDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/ContributionDetailViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/ContributionEditorDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/ContributionEditorDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/KudosViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/KudosViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/PageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/PageViewModelBase.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/ProfileViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/ViewModels/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/ViewModels/readme.md -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/AboutPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/AddContributionsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/AddContributionsPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/AddContributionsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/AddContributionsPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ContributionDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ContributionDetailPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ContributionDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ContributionDetailPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/HomePage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/HomePage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/KudosPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/KudosPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/KudosPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/KudosPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ProfilePage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ProfilePage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ShellPage.xaml -------------------------------------------------------------------------------- /src/MvpApi.Uwp/Views/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/Views/ShellPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpApi.Uwp/_pkginfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.Uwp/_pkginfo.txt -------------------------------------------------------------------------------- /src/MvpApi.UwpBackgroundTasks/MvpApi.UwpBackgroundTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.UwpBackgroundTasks/MvpApi.UwpBackgroundTasks.csproj -------------------------------------------------------------------------------- /src/MvpApi.UwpBackgroundTasks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.UwpBackgroundTasks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MvpApi.UwpBackgroundTasks/UpdateTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.UwpBackgroundTasks/UpdateTask.cs -------------------------------------------------------------------------------- /src/MvpApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.sln -------------------------------------------------------------------------------- /src/MvpApi.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi.slnx -------------------------------------------------------------------------------- /src/MvpApi_Maui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_Maui.sln -------------------------------------------------------------------------------- /src/MvpApi_Maui.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_Maui.slnx -------------------------------------------------------------------------------- /src/MvpApi_Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_Tests.sln -------------------------------------------------------------------------------- /src/MvpApi_Tests.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_Tests.slnx -------------------------------------------------------------------------------- /src/MvpApi_UWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_UWP.sln -------------------------------------------------------------------------------- /src/MvpApi_UWP.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_UWP.slnx -------------------------------------------------------------------------------- /src/MvpApi_WPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_WPF.sln -------------------------------------------------------------------------------- /src/MvpApi_WPF.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_WPF.slnx -------------------------------------------------------------------------------- /src/MvpApi_WinUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_WinUI.sln -------------------------------------------------------------------------------- /src/MvpApi_WinUI.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpApi_WinUI.slnx -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/App.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/App.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Behaviors/BehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Behaviors/BehaviorBase.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Behaviors/EventToCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Behaviors/EventToCommandBehavior.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/ActiveTabConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/ActiveTabConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/BoolToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/BoolToIconConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/ConfigurableBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/ConfigurableBoolConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/ContributionTypeNameToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/ContributionTypeNameToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/DoubleToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/DoubleToIntConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/IntToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/IntToDoubleConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/MvcContentUrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/MvcContentUrlConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/PrivacyLevelToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/PrivacyLevelToColorConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/ThresholdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/ThresholdConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/UploadStatusToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/UploadStatusToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Converters/ValueWhenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Converters/ValueWhenConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Directory.Build.props -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Directory.Build.targets -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/MauiProgram.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Models/Authentication/AuthHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Models/Authentication/AuthHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Models/Authentication/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Models/Authentication/AuthResponse.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/MvpCompanion.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/MvpCompanion.Maui.csproj -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Android/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Android/NotificationService.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/NotificationService.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/MacCatalyst/trayicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/MacCatalyst/trayicon.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/NotificationService.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/Windows/trayicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/Windows/trayicon.ico -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/iOS/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/iOS/NotificationService.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Fonts/telerikfontexamples.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Fonts/telerikfontexamples.ttf -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/add_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/add_icon.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/coffee.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/dinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/dinner.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/four_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/four_star.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/hero.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/lunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/lunch.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/mvp_companion_logo_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/mvp_companion_logo_150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/mvp_icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/mvp_icon_dark.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/search_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/search_icon.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_account.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_account_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_account_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_briefcase.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_briefcase_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_briefcase_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_home.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_home_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_home_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_information.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_information_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_information_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_settings.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_settings_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_settings_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_upload.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/tab_upload_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/tab_upload_on.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Images/video_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Images/video_ad.png -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Styles/DefaultTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Styles/DefaultTheme.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Styles/DefaultTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Styles/DefaultTheme.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/Styles/IconFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/Styles/IconFont.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/appicon.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Selectors/GroupHeaderTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Selectors/GroupHeaderTemplateSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Services/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Services/INotificationService.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Services/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Services/ServiceProvider.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/ShellPage.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/ShellPage.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/About.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/About.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Detail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Detail.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Detail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Detail.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Help.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Help.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Help.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Help.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Home.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Home.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Login.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Login.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Login.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Login.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Profile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Profile.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Profile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Profile.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Settings.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Settings.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Upload.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Upload.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Maui/Views/Upload.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Maui/Views/Upload.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Extensions/ContributionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Extensions/ContributionExtensions.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/DesignTimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/DesignTimeHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/DiagnosticsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/DiagnosticsHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/FeedbackHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/FeedbackHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/PaletteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/PaletteHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/TaskUtilities.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Helpers/UwpExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Helpers/UwpExceptionLogger.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/MvpCompanion.UI.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/MvpCompanion.UI.Common.csproj -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.Common/Properties/MvpCompanion.UI.Common.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.Common/Properties/MvpCompanion.UI.Common.rd.xml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/StoreLogo.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/MvpCompanion.UI.WinUI (Package).wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/MvpCompanion.UI.WinUI (Package).wapproj -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/App.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/App.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Common/DateTimeMonthKeyLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Common/DateTimeMonthKeyLookup.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Common/ExternalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Common/ExternalConstants.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Common/TechnologyKeyLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Common/TechnologyKeyLookup.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/BoolToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/BoolToIconConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/ConfigurableBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/ConfigurableBoolConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/ContributionTypeNameToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/ContributionTypeNameToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/DateTimeToDateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/DateTimeToDateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/DoubleToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/DoubleToIntConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/IntToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/IntToDoubleConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/MvcContentUrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/MvcContentUrlConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/PathToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/PathToBitmapImageConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/PrivacyLevelToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/PrivacyLevelToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/StringFormatConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/ThresholdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/ThresholdConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/UploadStatusToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/UploadStatusToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Converters/ValueWhenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Converters/ValueWhenConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/AdditionalTechnologyAreasPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/AdditionalTechnologyAreasPicker.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/AdditionalTechnologyAreasPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/AdditionalTechnologyAreasPicker.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/AwardQuestionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/AwardQuestionsDialog.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/AwardQuestionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/AwardQuestionsDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/LoginDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/LoginDialog.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/LoginDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/LoginDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/TutorialDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/TutorialDialog.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Dialogs/TutorialDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Dialogs/TutorialDialog.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Extensions/ContributionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Extensions/ContributionExtensions.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/DesignTimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/DesignTimeHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/DiagnosticsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/DiagnosticsHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/FeedbackHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/FeedbackHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/PaletteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/PaletteHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/TaskUtilities.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Helpers/UwpExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Helpers/UwpExceptionLogger.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/4starStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/4starStar.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/CoffeeKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/CoffeeKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/DinnerKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/DinnerKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/HeroBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/HeroBackground.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/LunchKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/LunchKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/MainIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/MainIcon.ico -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/MvpCompanionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/MvpCompanionIcon.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/MvpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/MvpIcon.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.backup(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.backup(1).png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/VideoAd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/VideoAd.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/MainWindow.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Models/CustomIKeyLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Models/CustomIKeyLookup.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Models/Product.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Models/ProductsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Models/ProductsGenerator.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/MvpCompanion.UI.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/MvpCompanion.UI.WinUI.csproj -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Package.appxmanifest -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Selectors/ContributionTypeNameCellStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Selectors/ContributionTypeNameCellStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Selectors/GroupHeaderTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Selectors/GroupHeaderTemplateSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Selectors/TechAreaGroupStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Selectors/TechAreaGroupStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Styles/CustomDataGridStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Styles/CustomDataGridStyles.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/AddContributionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/AddContributionsViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/ContributionDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/ContributionDetailViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/KudosViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/KudosViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/ProfileViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/TabViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/TabViewModelBase.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/ViewModels/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/ViewModels/readme.md -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/AboutView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/AboutView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/AddContributionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/AddContributionsView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/AddContributionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/AddContributionsView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ContributionDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ContributionDetailView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ContributionDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ContributionDetailView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/HomeView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/KudosView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/KudosView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/KudosView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/KudosView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ProfileView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ProfileView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/SettingsView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ShellView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/Views/ShellView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/Views/ShellView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.UI.WinUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.UI.WinUI/app.manifest -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/MvpCompanion.Wpf.Packaging.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/MvpCompanion.Wpf.Packaging.wapproj -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf.Packaging/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf.Packaging/Package.appxmanifest -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/App.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/App.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/BoolToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/BoolToIconConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/ContributionTypeNameToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/ContributionTypeNameToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/DateTimeToDateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/DateTimeToDateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/DoubleToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/DoubleToIntConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/MvcContentUrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/MvcContentUrlConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/PathToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/PathToBitmapImageConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/PrivacyLevelToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/PrivacyLevelToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/ThresholdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/ThresholdConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/UploadStatusToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/UploadStatusToBoolConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/UploadStatusToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/UploadStatusToBrushConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Converters/ValueWhenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Converters/ValueWhenConverter.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/DesignTimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/DesignTimeHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/DiagnosticsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/DiagnosticsHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/ExceptionLogger.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/FeedbackHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/FeedbackHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/NetworkHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/PaletteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/PaletteHelper.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/PersonalizationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/PersonalizationHelpers.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Helpers/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Helpers/TaskUtilities.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/4starStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/4starStar.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/CoffeeKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/CoffeeKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/DinnerKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/DinnerKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/HeroBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/HeroBackground.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/LunchKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/LunchKudo.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/MainIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/MainIcon.ico -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/MvpCompanionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/MvpCompanionIcon.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/MvpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/MvpIcon.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Images/VideoAd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Images/VideoAd.png -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/LoginWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/LoginWindow.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/LoginWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/LoginWindow.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Models/NavItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Models/NavItemModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Models/ViewName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Models/ViewName.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/MvpCompanion.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/MvpCompanion.Wpf.csproj -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Selectors/ContributionTypeNameCellStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Selectors/ContributionTypeNameCellStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Selectors/TechAreaGroupStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Selectors/TechAreaGroupStyleSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Selectors/ViewContentTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Selectors/ViewContentTemplateSelector.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ShellWindow.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Styles/GeneralStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Styles/GeneralStyles.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/AddContributionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/AddContributionsViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/ContributionDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/ContributionDetailViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/ContributionEditorDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/ContributionEditorDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/KudosViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/KudosViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/ProfileViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/ViewModels/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/ViewModels/readme.md -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/HomeView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/KudosView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/KudosView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/KudosView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/KudosView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/ProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/ProfileView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/ProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/ProfileView.xaml.cs -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/SettingsView.xaml -------------------------------------------------------------------------------- /src/MvpCompanion.Wpf/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/MvpCompanion.Wpf/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LanceMcCarthy/MvpApi/HEAD/src/NuGet.Config --------------------------------------------------------------------------------