├── .azure-pipelines-api-integration-tests.yml ├── .azure-pipelines-canary.yml ├── .azure-pipelines.yml ├── .azuredevops └── pull_request_template.md ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── conventional-commits.yml ├── .gitignore ├── .mergify.yml ├── .template.config ├── TemplateConfig.md ├── build │ ├── GenerateAppReadme.ps1 │ ├── NV.Templates.Mobile.nuspec │ ├── gitversion-config.yml │ ├── stage-donetnew.yaml │ └── stage-publish-template.yml ├── dotnetcli.host.json ├── images │ └── nv_logo128.png └── template.json ├── APP_README.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── doc ├── Architecture.md ├── AzurePipelines.md ├── Configuration.md ├── DataLoading.md ├── DefaultAnalytics.md ├── DependencyInjection.md ├── Diagnostics.md ├── Environments.md ├── ErrorHandling.md ├── ForcedUpdate.md ├── HTTP.md ├── KillSwitch.md ├── Localization.md ├── Logging.md ├── PlatformSpecifics.md ├── Reviews.md ├── Scheduling.md ├── Serialization.md ├── Startup.md ├── Testing.md ├── Validation.md ├── diagrams │ ├── architecture-context.png │ ├── architecture-structure.png │ ├── architecture.drawio │ └── solution-structure.png └── images │ └── VisualStudioTaskListForNextSteps.PNG ├── nuget.config ├── src ├── ApplicationTemplate.sln └── app │ ├── ApplicationTemplate.Access │ ├── ApiClients │ │ ├── Authentication │ │ │ ├── AuthenticationApiClientMock.cs │ │ │ ├── Data │ │ │ │ ├── AuthenticationData.cs │ │ │ │ └── AuthenticationToken.cs │ │ │ └── IAuthenticationApiClient.cs │ │ ├── DadJokes │ │ │ ├── DadJokesApiClientMock.FetchData.json │ │ │ ├── DadJokesApiClientMock.cs │ │ │ ├── Data │ │ │ │ ├── DadJokeChildData.cs │ │ │ │ ├── DadJokeContentData.cs │ │ │ │ ├── DadJokesData.cs │ │ │ │ ├── DadJokesErrorResponse.cs │ │ │ │ └── DadJokesResponse.cs │ │ │ └── IDadJokesApiClient.cs │ │ ├── KillSwitch │ │ │ ├── IKillSwitchDataSource.cs │ │ │ └── KillSwitchDataSourceMock.cs │ │ ├── MinimumVersion │ │ │ ├── IMinimumVersionProvider.cs │ │ │ └── MinimumVersionProviderMock.cs │ │ ├── Posts │ │ │ ├── Data │ │ │ │ ├── ErrorData.cs │ │ │ │ ├── PostData.cs │ │ │ │ └── PostErrorResponse.cs │ │ │ ├── IPostsApiClient.cs │ │ │ ├── PostsApiClientException.cs │ │ │ ├── PostsApiClientMock.GetAll.json │ │ │ └── PostsApiClientMock.cs │ │ └── UserProfile │ │ │ ├── IUserProfileApiClient.cs │ │ │ ├── UserProfileApiClientMock.Get.json │ │ │ ├── UserProfileApiClientMock.cs │ │ │ └── UserProfileData.cs │ ├── ApplicationTemplate.Access.csproj │ ├── Configuration │ │ ├── ApiClientOptions.cs │ │ ├── ApplicationStoreUrisOptions.cs │ │ ├── DadJokesApiClientOptions.cs │ │ ├── MockConfiguration.cs │ │ ├── MockOptions.cs │ │ ├── NativePlatformConfiguration.cs │ │ ├── PersistenceConfiguration.cs │ │ └── SerializationConfiguration.cs │ ├── Framework │ │ ├── BaseMock.cs │ │ ├── Configuration │ │ │ ├── IConfiguration.Extensions.cs │ │ │ ├── IHttpClientBuilder.Extensions.cs │ │ │ └── IServiceCollection.Extensions.cs │ │ ├── HttpDebugger │ │ │ ├── HttpDebuggerHandler.cs │ │ │ ├── HttpDebuggerService.cs │ │ │ ├── HttpTrace.cs │ │ │ └── IHttpDebuggerService.cs │ │ └── Serialization │ │ │ ├── JsonSerializerToResponseContentSererializerAdapter.cs │ │ │ ├── JsonSerializerToSettingsSerializerAdapter.cs │ │ │ ├── JwtData.cs │ │ │ ├── JwtDataJsonConverter.cs │ │ │ ├── StringJsonConverter.cs │ │ │ └── UnixTimestampJsonConverter.cs │ ├── LocalStorage │ │ ├── ApplicationSettings.cs │ │ ├── ApplicationSettingsRepository.cs │ │ ├── DataPersisterReviewSettingsSource.cs │ │ ├── FavoriteJokeData.cs │ │ └── IApplicationSettingsRepository.cs │ └── PlatformServices │ │ ├── Connectivity │ │ ├── ConnectivityChangedEventArgs.cs │ │ ├── ConnectivityState.cs │ │ ├── IConnectivityProvider.cs │ │ └── MockedConnectivityProvider.cs │ │ ├── DeviceInformation │ │ └── IDeviceInformationProvider.cs │ │ ├── Email │ │ ├── Email.cs │ │ ├── EmailAttachment.cs │ │ ├── EmailBodyFormat.cs │ │ ├── IEmailService.cs │ │ └── MockedEmailService.cs │ │ ├── Launcher │ │ ├── IAppStoreUriProvider.cs │ │ ├── ILauncherService.cs │ │ └── LaunchFailedException.cs │ │ ├── Memory │ │ └── IMemoryProvider.cs │ │ └── Version │ │ ├── IVersionProvider.cs │ │ └── VersionProviderExtensions.cs │ ├── ApplicationTemplate.Business │ ├── ApplicationTemplate.Business.csproj │ ├── Authentication │ │ ├── AuthenticationService.cs │ │ └── IAuthenticationService.cs │ ├── DadJokes │ │ ├── DadJokesQuote.cs │ │ ├── DadJokesService.cs │ │ ├── IDadJokesService.cs │ │ └── PostTypes.cs │ ├── ForcedUpdates │ │ ├── IUpdateRequiredService.cs │ │ └── UpdateRequiredService.cs │ ├── KillSwitch │ │ ├── IKillSwitchService.cs │ │ └── KillSwitchService.cs │ ├── Posts │ │ ├── IPostService.cs │ │ ├── Post.cs │ │ └── PostService.cs │ └── UserProfile │ │ ├── IUserProfileService.cs │ │ ├── UserProfile.cs │ │ └── UserProfileService.cs │ ├── ApplicationTemplate.Mobile │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── Assets │ │ │ ├── AboutAssets.txt │ │ │ └── Fonts │ │ │ │ └── uno-fluentui-assets.ttf │ │ ├── LinkerExclusions.xml │ │ ├── Main.Android.cs │ │ ├── MainActivity.Android.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── drawable-hdpi │ │ │ │ └── Logo.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Logo.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── Logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── Logo.png │ │ │ ├── drawable │ │ │ │ └── splash.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values-night │ │ │ │ └── Colors.xml │ │ │ ├── values │ │ │ │ ├── Colors.xml │ │ │ │ ├── Strings.xml │ │ │ │ └── Styles.xml │ │ │ └── xml │ │ │ │ ├── file_paths.xml │ │ │ │ ├── network_security_config.xml │ │ │ │ └── network_security_config_prod.xml │ │ └── environment.conf │ ├── ApplicationTemplate.Mobile.csproj │ ├── custom.aprof │ └── iOS │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── LinkerExclusions.xml │ │ ├── Main.iOS.cs │ │ ├── Media.xcassets │ │ ├── AppIcons.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-1024.png │ │ │ ├── Icon-20.png │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ └── Icon-83.5@2x.png │ │ └── LaunchImages.launchimage │ │ │ └── Contents.json │ │ └── Resources │ │ ├── Assets │ │ ├── splashscreen_icon.png │ │ ├── splashscreen_icon@2x.png │ │ └── splashscreen_icon@3x.png │ │ └── Fonts │ │ └── uno-fluentui-assets.ttf │ ├── ApplicationTemplate.Presentation │ ├── ApplicationTemplate.Presentation.csproj │ ├── Configuration │ │ ├── AnalyticsConfiguration.cs │ │ ├── ApiConfiguration.cs │ │ ├── AppServicesConfiguration.cs │ │ ├── ConfigurationConfiguration.cs │ │ ├── DiagnosticsConfiguration.cs │ │ ├── EnvironmentManager.cs │ │ ├── ErrorConfiguration.cs │ │ ├── FluentValidationLanguageManager.cs │ │ ├── IEnvironmentManager.cs │ │ ├── LocalizationConfiguration.cs │ │ ├── LoggingOutputOptions.cs │ │ ├── NavigationCoreConfiguration.cs │ │ ├── ReadOnlyConfigurationOptions.cs │ │ ├── ReviewConfiguration.cs │ │ └── ViewModelConfiguration.cs │ ├── CoreStartup.cs │ ├── Framework │ │ ├── Analytics │ │ │ ├── AnalytcsSink.cs │ │ │ ├── AnalyticsCommandStrategy.cs │ │ │ └── IAnalyticsSink.cs │ │ ├── DataLoader │ │ │ ├── LogErrorDataLoaderStrategy.cs │ │ │ ├── MonitoringDataLoaderStrategy.cs │ │ │ └── NetworkReconnectionDataLoaderTrigger.cs │ │ ├── Diagnostics │ │ │ └── IDiagnosticsService.cs │ │ ├── DynamicData │ │ │ └── IChangeSet.Extensions.cs │ │ ├── Localization │ │ │ ├── IThreadCultureOverrideService.cs │ │ │ ├── MockStringLocalizer.cs │ │ │ └── MockThreadCultureOverrideService.cs │ │ ├── Logging │ │ │ ├── ILogFilesProvider.cs │ │ │ └── ThreadIdEnricher.cs │ │ ├── Reactive │ │ │ └── IObservable.Extensions.cs │ │ ├── Startup │ │ │ ├── CoreStartupBase.cs │ │ │ ├── IExtendedSplashscreenController.cs │ │ │ ├── StartupBase.cs │ │ │ ├── StartupState.cs │ │ │ ├── WritableJsonConfigurationProvider.cs │ │ │ └── WritableJsonConfigurationSource.cs │ │ └── ViewModels │ │ │ ├── IViewModel.Extensions.Deactivation.cs │ │ │ ├── IViewModel.Extensions.Options.cs │ │ │ ├── IViewModel.Extensions.PropertyFromDynamicProperty.cs │ │ │ ├── TabViewModel.cs │ │ │ └── ValueChangedOnBackgroundTaskDynamicPropertyFromDynamicProperty.cs │ ├── PresentationConstants.cs │ ├── ThirdPartySoftwareLicenses.txt │ ├── ViewModels │ │ ├── Authentication │ │ │ ├── CreateAccountFormViewModel.cs │ │ │ ├── CreateAccountPageViewModel.cs │ │ │ ├── ForgotPasswordFormViewModel.cs │ │ │ ├── ForgotPasswordPageViewModel.cs │ │ │ ├── LoginFormViewModel.cs │ │ │ ├── LoginPageViewModel.cs │ │ │ ├── PasswordFormViewModel.cs │ │ │ ├── ResetPasswordPageViewModel.cs │ │ │ └── SentEmailConfirmationPageViewModel.cs │ │ ├── DadJokes │ │ │ ├── DadJokesFiltersPageViewModel.cs │ │ │ ├── DadJokesItemViewModel.cs │ │ │ └── DadJokesPageViewModel.cs │ │ ├── Diagnostics │ │ │ ├── Configuration │ │ │ │ └── ConfigurationDebuggerViewModel.cs │ │ │ ├── CultureDiagnosticsViewModel.cs │ │ │ ├── DiagnosticsCountersService.cs │ │ │ ├── DiagnosticsOverlayViewModel.cs │ │ │ ├── DiagnosticsPageViewModel.cs │ │ │ ├── DiagnosticsViewModelExtensions.cs │ │ │ ├── EnvironmentPickerPageViewModel.cs │ │ │ ├── ExceptionsDiagnosticsViewModel.cs │ │ │ ├── HttpDebugger │ │ │ │ ├── HttpDebuggerViewModel.cs │ │ │ │ └── HttpTraceItemViewModel.cs │ │ │ ├── LoggersDiagnosticsViewModel.cs │ │ │ ├── Navigation │ │ │ │ └── NavigationDebuggerViewModel.cs │ │ │ ├── NetworkDiagnosticsViewModel.cs │ │ │ ├── SettingsDiagnosticsViewModel.cs │ │ │ └── SummaryDiagnosticsViewModel.cs │ │ ├── Extensions │ │ │ ├── IRuleBuilder.Extensions.cs │ │ │ ├── ISectionsNavigator.Extensions.cs │ │ │ └── SectionsNavigatorState.Extensions.cs │ │ ├── ForcedUpdatePageViewModel.cs │ │ ├── IViewModel.Extensions.cs │ │ ├── KillSwitchPageViewModel.cs │ │ ├── MenuViewModel.cs │ │ ├── Posts │ │ │ ├── EditPostPageViewModel.cs │ │ │ ├── PostFormViewModel.cs │ │ │ ├── PostItemViewModel.cs │ │ │ └── PostsPageViewModel.cs │ │ ├── Settings │ │ │ ├── EditProfileFormViewModel.cs │ │ │ ├── EditProfilePageViewModel.cs │ │ │ ├── LicensesPageViewModel.cs │ │ │ └── SettingsPageViewModel.cs │ │ ├── ShellViewModel.cs │ │ ├── ViewModel.cs │ │ └── Welcome │ │ │ ├── OnboardingItemViewModel.cs │ │ │ ├── OnboardingPageViewModel.cs │ │ │ └── WelcomePageViewModel.cs │ ├── appsettings.development.json │ ├── appsettings.json │ ├── appsettings.production.json │ └── appsettings.staging.json │ ├── ApplicationTemplate.Shared.Views │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationTemplate.Shared.Views.projitems │ ├── ApplicationTemplate.Views.shproj │ ├── Assets │ │ ├── Background-Mustaches.scale-100.png │ │ ├── Background-Mustaches.scale-150.png │ │ ├── Background-Mustaches.scale-200.png │ │ ├── Background-Mustaches.scale-300.png │ │ ├── Background-Mustaches.scale-400.png │ │ ├── Background_Mustaches_Light.scale-100.png │ │ ├── Background_Mustaches_Light.scale-150.png │ │ ├── Background_Mustaches_Light.scale-200.png │ │ ├── Background_Mustaches_Light.scale-300.png │ │ ├── Background_Mustaches_Light.scale-400.png │ │ ├── CommandBar │ │ │ ├── closeIcon.scale-100.png │ │ │ ├── closeIcon.scale-150.png │ │ │ ├── closeIcon.scale-200.png │ │ │ ├── closeIcon.scale-300.png │ │ │ ├── closeIcon.scale-400.png │ │ │ ├── filter.scale-100.png │ │ │ ├── filter.scale-150.png │ │ │ ├── filter.scale-200.png │ │ │ ├── filter.scale-300.png │ │ │ └── filter.scale-400.png │ │ ├── Error_Template_Icon.scale-100.png │ │ ├── Error_Template_Icon.scale-150.png │ │ ├── Error_Template_Icon.scale-200.png │ │ ├── Error_Template_Icon.scale-300.png │ │ ├── Error_Template_Icon.scale-400.png │ │ ├── Fonts │ │ │ ├── Guillon-Black.ttf │ │ │ ├── Guillon-Bold.ttf │ │ │ ├── Guillon-Light.ttf │ │ │ ├── Guillon-Regular.ttf │ │ │ ├── Guillon-SemiBold.ttf │ │ │ └── segmdl2.ttf │ │ ├── Google_Icon.scale-100.png │ │ ├── Google_Icon.scale-150.png │ │ ├── Google_Icon.scale-200.png │ │ ├── Google_Icon.scale-300.png │ │ ├── Google_Icon.scale-400.png │ │ ├── Image_Example.scale-100.png │ │ ├── Image_Example.scale-150.png │ │ ├── Image_Example.scale-200.png │ │ ├── Image_Example.scale-300.png │ │ ├── Image_Example.scale-400.png │ │ ├── Letters.scale-100.png │ │ ├── Letters.scale-150.png │ │ ├── Letters.scale-200.png │ │ ├── Letters.scale-300.png │ │ ├── Letters.scale-400.png │ │ ├── Logo.scale-100.png │ │ ├── Logo.scale-150.png │ │ ├── Logo.scale-200.png │ │ ├── Logo.scale-300.png │ │ ├── Logo.scale-400.png │ │ ├── Tutorial_FirstScreen_Icon.scale-100.png │ │ ├── Tutorial_FirstScreen_Icon.scale-150.png │ │ ├── Tutorial_FirstScreen_Icon.scale-200.png │ │ ├── Tutorial_FirstScreen_Icon.scale-300.png │ │ ├── Tutorial_FirstScreen_Icon.scale-400.png │ │ ├── Tutorial_SecondScreen_Icon.scale-100.png │ │ ├── Tutorial_SecondScreen_Icon.scale-150.png │ │ ├── Tutorial_SecondScreen_Icon.scale-200.png │ │ ├── Tutorial_SecondScreen_Icon.scale-300.png │ │ ├── Tutorial_SecondScreen_Icon.scale-400.png │ │ ├── Tutorial_ThirdScreen_Icon.scale-100.png │ │ ├── Tutorial_ThirdScreen_Icon.scale-150.png │ │ ├── Tutorial_ThirdScreen_Icon.scale-200.png │ │ ├── Tutorial_ThirdScreen_Icon.scale-300.png │ │ └── Tutorial_ThirdScreen_Icon.scale-400.png │ ├── Behaviors │ │ ├── CommandBarSafeAreaBehavior.cs │ │ ├── FormattingTextBoxBehavior.Android.cs │ │ ├── FormattingTextBoxBehavior.cs │ │ └── FormattingTextBoxBehavior.iOS.cs │ ├── Configuration │ │ ├── ApiConfiguration.cs │ │ ├── LinkerConfiguration.cs │ │ ├── LocalizationConfiguration.cs │ │ ├── LoggingConfiguration.cs │ │ ├── NavigationConfiguration.cs │ │ ├── PersistenceConfiguration.cs │ │ └── ViewServicesConfiguration.cs │ ├── Content │ │ ├── Authentication │ │ │ ├── CreateAccountPage.xaml │ │ │ ├── CreateAccountPage.xaml.cs │ │ │ ├── ForgotPasswordPage.xaml │ │ │ ├── ForgotPasswordPage.xaml.cs │ │ │ ├── LoginPage.xaml │ │ │ ├── LoginPage.xaml.cs │ │ │ ├── ResetPasswordPage.xaml │ │ │ ├── ResetPasswordPage.xaml.cs │ │ │ ├── SentEmailConfirmationPage.xaml │ │ │ └── SentEmailConfirmationPage.xaml.cs │ │ ├── DadJokes │ │ │ ├── DadJokesFavoritesPage.xaml │ │ │ ├── DadJokesFavoritesPage.xaml.cs │ │ │ ├── DadJokesFiltersPage.xaml │ │ │ ├── DadJokesFiltersPage.xaml.cs │ │ │ ├── DadJokesPage.xaml │ │ │ ├── DadJokesPage.xaml.cs │ │ │ ├── DadJokesSearchPage.xaml │ │ │ └── DadJokesSearchPage.xaml.cs │ │ ├── Diagnostics │ │ │ ├── ConfigurationDebuggerView.xaml │ │ │ ├── ConfigurationDebuggerView.xaml.cs │ │ │ ├── DiagnosticsOverlay.xaml │ │ │ ├── DiagnosticsOverlay.xaml.cs │ │ │ ├── DiagnosticsPage.xaml │ │ │ ├── DiagnosticsPage.xaml.cs │ │ │ ├── DiagnosticsTabPresenter.cs │ │ │ ├── EnvironmentPickerPage.xaml │ │ │ ├── EnvironmentPickerPage.xaml.cs │ │ │ ├── HttpDebuggerView.xaml │ │ │ ├── HttpDebuggerView.xaml.cs │ │ │ ├── NavigationDebuggerView.xaml │ │ │ └── NavigationDebuggerView.xaml.cs │ │ ├── ForcedUpdate │ │ │ ├── ForcedUpdatePage.xaml │ │ │ └── ForcedUpdatePage.xaml.cs │ │ ├── KillSwitch │ │ │ ├── KillSwitchPage.xaml │ │ │ └── KillSwitchPage.xaml.cs │ │ ├── Menu.xaml │ │ ├── Menu.xaml.cs │ │ ├── Posts │ │ │ ├── EditPostPage.xaml │ │ │ ├── EditPostPage.xaml.cs │ │ │ ├── PostsPage.xaml │ │ │ └── PostsPage.xaml.cs │ │ ├── Settings │ │ │ ├── EditProfilePage.xaml │ │ │ ├── EditProfilePage.xaml.cs │ │ │ ├── LicensesPage.xaml │ │ │ ├── LicensesPage.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ └── SettingsPage.xaml.cs │ │ └── Welcome │ │ │ ├── OnboardingPage.xaml │ │ │ ├── OnboardingPage.xaml.cs │ │ │ ├── WelcomePage.xaml │ │ │ └── WelcomePage.xaml.cs │ ├── Controls │ │ ├── AppBarBackButton.cs │ │ ├── BottomTabBarButton.cs │ │ └── Validation │ │ │ ├── DataValidationState.cs │ │ │ ├── DataValidationStateType.cs │ │ │ └── DataValidationView.cs │ ├── Converters │ │ ├── DebugConverter.cs │ │ ├── FiltersConverter.cs │ │ ├── FromNullableAppBarButtonToAppBarButtonConverter.cs │ │ └── FromNullableBoolToCustomValueConverter.cs │ ├── Framework │ │ ├── AttachableUserControl.cs │ │ ├── DiagnosticsService.cs │ │ └── ExtendedSplashscreenController.cs │ ├── Helpers │ │ ├── DependencyObjectExtensions.cs │ │ ├── FrameworkElementExtension.cs │ │ └── ObservableExtensions.cs │ ├── PlatformServices │ │ ├── Connectivity │ │ │ └── ConnectivityProvider.cs │ │ ├── DeviceInformation │ │ │ └── DeviceInformationProvider.cs │ │ ├── Email │ │ │ ├── EmailService.Mobile.cs │ │ │ └── EmailService.Windows.cs │ │ ├── Launcher │ │ │ ├── AppStoreUriProvider.cs │ │ │ ├── LauncherService.cs │ │ │ └── LauncherServiceExtensions.cs │ │ ├── Memory │ │ │ ├── MemoryProvider.cs │ │ │ └── MemoryProvider.iOS.cs │ │ └── Version │ │ │ ├── VersionProvider.Mobile.cs │ │ │ ├── VersionProvider.Windows.cs │ │ │ └── VersionProvider.cs │ ├── Shell.xaml │ ├── Shell.xaml.cs │ ├── Startup.cs │ ├── Strings │ │ ├── en │ │ │ └── Resources.resw │ │ └── fr │ │ │ └── Resources.resw │ └── Styles │ │ ├── Application │ │ ├── Brushes.xaml │ │ ├── ColorPalette.xaml │ │ ├── Converters.xaml │ │ ├── Fonts.xaml │ │ ├── Icons.xaml │ │ ├── LayoutConstants.xaml │ │ └── MaterialOverride.xaml │ │ └── Controls │ │ ├── BottomTabBarButton.xaml │ │ ├── Button.xaml │ │ ├── CalendarView.xaml │ │ ├── CheckBox.xaml │ │ ├── ComboBox.xaml │ │ ├── CommandBar.xaml │ │ ├── DataLoaderView.xaml │ │ ├── DataValidationView.xaml │ │ ├── ExtendedSplashScreen.xaml │ │ ├── FlipViewItem.xaml │ │ ├── Frame.xaml │ │ ├── GridViewHeaderItem.xaml │ │ ├── GridViewItem.xaml │ │ ├── HyperlinkButton.xaml │ │ ├── ListView.xaml │ │ ├── ListViewHeaderItem.xaml │ │ ├── ListViewItem.xaml │ │ ├── PasswordBox.xaml │ │ ├── PathControl.xaml │ │ ├── RadioButton.xaml │ │ ├── TextBlock.xaml │ │ ├── TextBox.xaml │ │ ├── ToggleButton.xaml │ │ └── ToggleSwitch.xaml │ ├── ApplicationTemplate.Tests.Api │ ├── ApiTestBase.cs │ ├── ApplicationTemplate.Tests.Api.csproj │ ├── DadJokesApiClientShould.cs │ └── Usings.cs │ ├── ApplicationTemplate.Tests.Functional │ ├── ApplicationTemplate.Tests.Functional.csproj │ ├── Authentication │ │ └── AuthenticationShould.cs │ ├── DadJokes │ │ └── DadJokesShould.cs │ ├── ForceUpdate │ │ └── ForceUpdatesShould.cs │ ├── FunctionalTestBase.Extensions.cs │ ├── FunctionalTestBase.cs │ ├── KillSwitch │ │ └── KillSwitchShould.cs │ ├── Menu │ │ └── MenuShould.cs │ ├── Posts │ │ └── EditPostPageViewModelShould.cs │ ├── Startup │ │ └── InitialNavigationShould.cs │ └── Usings.cs │ ├── ApplicationTemplate.Tests.Unit │ ├── ApplicationTemplate.Tests.Unit.csproj │ ├── AuthenticationServiceShould.cs │ ├── Posts │ │ ├── PostServiceShould.Mock.cs │ │ └── PostServiceShould.cs │ └── UserProfile │ │ ├── UserProfileServiceShould.Mock.cs │ │ └── UserProfileServiceShould.cs │ ├── ApplicationTemplate.Tests │ ├── ApplicationTemplate.Tests.csproj │ └── TestEnvironmentManager.cs │ └── ApplicationTemplate.Windows │ ├── ApplicationTemplate.Windows.csproj │ ├── Images │ ├── AppIcon.scale-100.png │ ├── AppIcon.scale-125.png │ ├── AppIcon.scale-150.png │ ├── AppIcon.scale-200.png │ ├── AppIcon.scale-400.png │ ├── AppIcon.targetsize-16.png │ ├── AppIcon.targetsize-16_altform-unplated.png │ ├── AppIcon.targetsize-24.png │ ├── AppIcon.targetsize-24_altform-unplated.png │ ├── AppIcon.targetsize-256.png │ ├── AppIcon.targetsize-256_altform-unplated.png │ ├── AppIcon.targetsize-32.png │ ├── AppIcon.targetsize-32_altform-unplated.png │ ├── AppIcon.targetsize-48.png │ ├── AppIcon.targetsize-48_altform-unplated.png │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── MediumTile.scale-100.png │ ├── MediumTile.scale-125.png │ ├── MediumTile.scale-150.png │ ├── MediumTile.scale-200.png │ ├── MediumTile.scale-400.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 │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── TitleBarIcon.ico │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ ├── Properties │ ├── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml │ └── launchSettings.json │ └── app.manifest ├── stylecop.json └── tools ├── GenerateThirdPartySoftwareLicenses.ps1 └── escape-if-directives.linq /.azure-pipelines-api-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.azure-pipelines-api-integration-tests.yml -------------------------------------------------------------------------------- /.azure-pipelines-canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.azure-pipelines-canary.yml -------------------------------------------------------------------------------- /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.azuredevops/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.azuredevops/pull_request_template.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.template.config/TemplateConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/TemplateConfig.md -------------------------------------------------------------------------------- /.template.config/build/GenerateAppReadme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/build/GenerateAppReadme.ps1 -------------------------------------------------------------------------------- /.template.config/build/NV.Templates.Mobile.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/build/NV.Templates.Mobile.nuspec -------------------------------------------------------------------------------- /.template.config/build/gitversion-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/build/gitversion-config.yml -------------------------------------------------------------------------------- /.template.config/build/stage-donetnew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/build/stage-donetnew.yaml -------------------------------------------------------------------------------- /.template.config/build/stage-publish-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/build/stage-publish-template.yml -------------------------------------------------------------------------------- /.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /.template.config/images/nv_logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/images/nv_logo128.png -------------------------------------------------------------------------------- /.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/.template.config/template.json -------------------------------------------------------------------------------- /APP_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/APP_README.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/README.md -------------------------------------------------------------------------------- /doc/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Architecture.md -------------------------------------------------------------------------------- /doc/AzurePipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/AzurePipelines.md -------------------------------------------------------------------------------- /doc/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Configuration.md -------------------------------------------------------------------------------- /doc/DataLoading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/DataLoading.md -------------------------------------------------------------------------------- /doc/DefaultAnalytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/DefaultAnalytics.md -------------------------------------------------------------------------------- /doc/DependencyInjection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/DependencyInjection.md -------------------------------------------------------------------------------- /doc/Diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Diagnostics.md -------------------------------------------------------------------------------- /doc/Environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Environments.md -------------------------------------------------------------------------------- /doc/ErrorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/ErrorHandling.md -------------------------------------------------------------------------------- /doc/ForcedUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/ForcedUpdate.md -------------------------------------------------------------------------------- /doc/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/HTTP.md -------------------------------------------------------------------------------- /doc/KillSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/KillSwitch.md -------------------------------------------------------------------------------- /doc/Localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Localization.md -------------------------------------------------------------------------------- /doc/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Logging.md -------------------------------------------------------------------------------- /doc/PlatformSpecifics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/PlatformSpecifics.md -------------------------------------------------------------------------------- /doc/Reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Reviews.md -------------------------------------------------------------------------------- /doc/Scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Scheduling.md -------------------------------------------------------------------------------- /doc/Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Serialization.md -------------------------------------------------------------------------------- /doc/Startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Startup.md -------------------------------------------------------------------------------- /doc/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Testing.md -------------------------------------------------------------------------------- /doc/Validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/Validation.md -------------------------------------------------------------------------------- /doc/diagrams/architecture-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/diagrams/architecture-context.png -------------------------------------------------------------------------------- /doc/diagrams/architecture-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/diagrams/architecture-structure.png -------------------------------------------------------------------------------- /doc/diagrams/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/diagrams/architecture.drawio -------------------------------------------------------------------------------- /doc/diagrams/solution-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/diagrams/solution-structure.png -------------------------------------------------------------------------------- /doc/images/VisualStudioTaskListForNextSteps.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/doc/images/VisualStudioTaskListForNextSteps.PNG -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/nuget.config -------------------------------------------------------------------------------- /src/ApplicationTemplate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/ApplicationTemplate.sln -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Authentication/AuthenticationApiClientMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Authentication/AuthenticationApiClientMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Authentication/Data/AuthenticationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Authentication/Data/AuthenticationData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Authentication/Data/AuthenticationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Authentication/Data/AuthenticationToken.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Authentication/IAuthenticationApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Authentication/IAuthenticationApiClient.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/DadJokesApiClientMock.FetchData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/DadJokesApiClientMock.FetchData.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/DadJokesApiClientMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/DadJokesApiClientMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokeChildData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokeChildData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokeContentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokeContentData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesErrorResponse.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/Data/DadJokesResponse.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/DadJokes/IDadJokesApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/DadJokes/IDadJokesApiClient.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/KillSwitch/IKillSwitchDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/KillSwitch/IKillSwitchDataSource.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/KillSwitch/KillSwitchDataSourceMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/KillSwitch/KillSwitchDataSourceMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/MinimumVersion/IMinimumVersionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/MinimumVersion/IMinimumVersionProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/MinimumVersion/MinimumVersionProviderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/MinimumVersion/MinimumVersionProviderMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/ErrorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/ErrorData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/PostData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/PostData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/PostErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/Data/PostErrorResponse.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/IPostsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/IPostsApiClient.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientException.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientMock.GetAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientMock.GetAll.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/Posts/PostsApiClientMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/UserProfile/IUserProfileApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/UserProfile/IUserProfileApiClient.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileApiClientMock.Get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileApiClientMock.Get.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileApiClientMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileApiClientMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApiClients/UserProfile/UserProfileData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/ApplicationTemplate.Access.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/ApplicationTemplate.Access.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/ApiClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/ApiClientOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/ApplicationStoreUrisOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/ApplicationStoreUrisOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/DadJokesApiClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/DadJokesApiClientOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/MockConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/MockConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/MockOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/MockOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/NativePlatformConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/NativePlatformConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/PersistenceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/PersistenceConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Configuration/SerializationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Configuration/SerializationConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/BaseMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/BaseMock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Configuration/IConfiguration.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Configuration/IConfiguration.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Configuration/IHttpClientBuilder.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Configuration/IHttpClientBuilder.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Configuration/IServiceCollection.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Configuration/IServiceCollection.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpDebuggerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpDebuggerHandler.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpDebuggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpDebuggerService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/HttpDebugger/HttpTrace.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/HttpDebugger/IHttpDebuggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/HttpDebugger/IHttpDebuggerService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/JsonSerializerToResponseContentSererializerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/JsonSerializerToResponseContentSererializerAdapter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/JsonSerializerToSettingsSerializerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/JsonSerializerToSettingsSerializerAdapter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/JwtData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/JwtData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/JwtDataJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/JwtDataJsonConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/StringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/StringJsonConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/Framework/Serialization/UnixTimestampJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/Framework/Serialization/UnixTimestampJsonConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/LocalStorage/ApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/LocalStorage/ApplicationSettings.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/LocalStorage/ApplicationSettingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/LocalStorage/ApplicationSettingsRepository.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/LocalStorage/DataPersisterReviewSettingsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/LocalStorage/DataPersisterReviewSettingsSource.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/LocalStorage/FavoriteJokeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/LocalStorage/FavoriteJokeData.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/LocalStorage/IApplicationSettingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/LocalStorage/IApplicationSettingsRepository.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/ConnectivityChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/ConnectivityChangedEventArgs.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/ConnectivityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/ConnectivityState.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/IConnectivityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/IConnectivityProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/MockedConnectivityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Connectivity/MockedConnectivityProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/DeviceInformation/IDeviceInformationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/DeviceInformation/IDeviceInformationProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Email/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Email/Email.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Email/EmailAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Email/EmailAttachment.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Email/EmailBodyFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Email/EmailBodyFormat.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Email/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Email/IEmailService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Email/MockedEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Email/MockedEmailService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Launcher/IAppStoreUriProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Launcher/IAppStoreUriProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Launcher/ILauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Launcher/ILauncherService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Launcher/LaunchFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Launcher/LaunchFailedException.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Memory/IMemoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Memory/IMemoryProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Version/IVersionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Version/IVersionProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Access/PlatformServices/Version/VersionProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Access/PlatformServices/Version/VersionProviderExtensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/ApplicationTemplate.Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/ApplicationTemplate.Business.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/Authentication/AuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/Authentication/AuthenticationService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/Authentication/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/Authentication/IAuthenticationService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/DadJokes/DadJokesQuote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/DadJokes/DadJokesQuote.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/DadJokes/DadJokesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/DadJokes/DadJokesService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/DadJokes/IDadJokesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/DadJokes/IDadJokesService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/DadJokes/PostTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/DadJokes/PostTypes.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/ForcedUpdates/IUpdateRequiredService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/ForcedUpdates/IUpdateRequiredService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/ForcedUpdates/UpdateRequiredService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/ForcedUpdates/UpdateRequiredService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/KillSwitch/IKillSwitchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/KillSwitch/IKillSwitchService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/KillSwitch/KillSwitchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/KillSwitch/KillSwitchService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/Posts/IPostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/Posts/IPostService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/Posts/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/Posts/Post.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/Posts/PostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/Posts/PostService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/UserProfile/IUserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/UserProfile/IUserProfileService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/UserProfile/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/UserProfile/UserProfile.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Business/UserProfile/UserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Business/UserProfile/UserProfileService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Assets/Fonts/uno-fluentui-assets.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Assets/Fonts/uno-fluentui-assets.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/LinkerExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/LinkerExclusions.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Main.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Main.Android.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/MainActivity.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/MainActivity.Android.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-hdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-hdpi/Logo.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-mdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-mdpi/Logo.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xhdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xhdpi/Logo.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xxhdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xxhdpi/Logo.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xxxhdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable-xxxhdpi/Logo.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/drawable/splash.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/values-night/Colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/values-night/Colors.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/values/Colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/values/Colors.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/values/Styles.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/xml/file_paths.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/xml/network_security_config.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/Resources/xml/network_security_config_prod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/Resources/xml/network_security_config_prod.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/Android/environment.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/Android/environment.conf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/ApplicationTemplate.Mobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/ApplicationTemplate.Mobile.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/custom.aprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/custom.aprof -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Info.plist -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/LinkerExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/LinkerExclusions.xml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Main.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Main.iOS.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-76.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/AppIcons.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/LaunchImages.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Media.xcassets/LaunchImages.launchimage/Contents.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon@2x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Resources/Assets/splashscreen_icon@3x.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Mobile/iOS/Resources/Fonts/uno-fluentui-assets.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Mobile/iOS/Resources/Fonts/uno-fluentui-assets.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ApplicationTemplate.Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ApplicationTemplate.Presentation.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/AnalyticsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/AnalyticsConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ApiConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/AppServicesConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/AppServicesConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ConfigurationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ConfigurationConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/DiagnosticsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/DiagnosticsConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/EnvironmentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/EnvironmentManager.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ErrorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ErrorConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/FluentValidationLanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/FluentValidationLanguageManager.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/IEnvironmentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/IEnvironmentManager.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/LocalizationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/LocalizationConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/LoggingOutputOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/LoggingOutputOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/NavigationCoreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/NavigationCoreConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ReadOnlyConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ReadOnlyConfigurationOptions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ReviewConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ReviewConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Configuration/ViewModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Configuration/ViewModelConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/CoreStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/CoreStartup.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Analytics/AnalytcsSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Analytics/AnalytcsSink.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Analytics/AnalyticsCommandStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Analytics/AnalyticsCommandStrategy.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Analytics/IAnalyticsSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Analytics/IAnalyticsSink.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/DataLoader/LogErrorDataLoaderStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/DataLoader/LogErrorDataLoaderStrategy.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/DataLoader/MonitoringDataLoaderStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/DataLoader/MonitoringDataLoaderStrategy.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/DataLoader/NetworkReconnectionDataLoaderTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/DataLoader/NetworkReconnectionDataLoaderTrigger.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Diagnostics/IDiagnosticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Diagnostics/IDiagnosticsService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/DynamicData/IChangeSet.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/DynamicData/IChangeSet.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Localization/IThreadCultureOverrideService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Localization/IThreadCultureOverrideService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Localization/MockStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Localization/MockStringLocalizer.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Localization/MockThreadCultureOverrideService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Localization/MockThreadCultureOverrideService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Logging/ILogFilesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Logging/ILogFilesProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Logging/ThreadIdEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Logging/ThreadIdEnricher.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Reactive/IObservable.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Reactive/IObservable.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/CoreStartupBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/CoreStartupBase.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/IExtendedSplashscreenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/IExtendedSplashscreenController.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/StartupBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/StartupBase.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/StartupState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/StartupState.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/WritableJsonConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/WritableJsonConfigurationProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/Startup/WritableJsonConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/Startup/WritableJsonConfigurationSource.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.Deactivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.Deactivation.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.Options.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.PropertyFromDynamicProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/ViewModels/IViewModel.Extensions.PropertyFromDynamicProperty.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/ViewModels/TabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/ViewModels/TabViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/Framework/ViewModels/ValueChangedOnBackgroundTaskDynamicPropertyFromDynamicProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/Framework/ViewModels/ValueChangedOnBackgroundTaskDynamicPropertyFromDynamicProperty.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/PresentationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/PresentationConstants.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ThirdPartySoftwareLicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ThirdPartySoftwareLicenses.txt -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/CreateAccountFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/CreateAccountFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/CreateAccountPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/CreateAccountPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ForgotPasswordFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ForgotPasswordFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ForgotPasswordPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ForgotPasswordPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/LoginFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/LoginFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/LoginPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/LoginPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/PasswordFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/PasswordFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ResetPasswordPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/ResetPasswordPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/SentEmailConfirmationPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Authentication/SentEmailConfirmationPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesFiltersPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesFiltersPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesItemViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/DadJokes/DadJokesPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/Configuration/ConfigurationDebuggerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/Configuration/ConfigurationDebuggerViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/CultureDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/CultureDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsCountersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsCountersService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsOverlayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsOverlayViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsViewModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/DiagnosticsViewModelExtensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/EnvironmentPickerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/EnvironmentPickerPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/ExceptionsDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/ExceptionsDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/HttpDebugger/HttpDebuggerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/HttpDebugger/HttpDebuggerViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/HttpDebugger/HttpTraceItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/HttpDebugger/HttpTraceItemViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/LoggersDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/LoggersDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/Navigation/NavigationDebuggerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/Navigation/NavigationDebuggerViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/NetworkDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/NetworkDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/SettingsDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/SettingsDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/SummaryDiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Diagnostics/SummaryDiagnosticsViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/IRuleBuilder.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/IRuleBuilder.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/ISectionsNavigator.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/ISectionsNavigator.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/SectionsNavigatorState.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Extensions/SectionsNavigatorState.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/ForcedUpdatePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/ForcedUpdatePageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/IViewModel.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/IViewModel.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/KillSwitchPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/KillSwitchPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/MenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/MenuViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Posts/EditPostPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Posts/EditPostPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostItemViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Posts/PostsPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Settings/EditProfileFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Settings/EditProfileFormViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Settings/EditProfilePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Settings/EditProfilePageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Settings/LicensesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Settings/LicensesPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Settings/SettingsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Settings/SettingsPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/OnboardingItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/OnboardingItemViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/OnboardingPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/OnboardingPageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/WelcomePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/ViewModels/Welcome/WelcomePageViewModel.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/appsettings.development.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/appsettings.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/appsettings.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/appsettings.production.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Presentation/appsettings.staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Presentation/appsettings.staging.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/App.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/App.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/ApplicationTemplate.Shared.Views.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/ApplicationTemplate.Shared.Views.projitems -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/ApplicationTemplate.Views.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/ApplicationTemplate.Views.shproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background-Mustaches.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Background_Mustaches_Light.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/closeIcon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/CommandBar/filter.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Error_Template_Icon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Black.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Bold.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Light.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-Regular.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/Guillon-SemiBold.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/segmdl2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Fonts/segmdl2.ttf -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Google_Icon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Image_Example.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Letters.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Logo.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_FirstScreen_Icon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_SecondScreen_Icon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-300.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Assets/Tutorial_ThirdScreen_Icon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Behaviors/CommandBarSafeAreaBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Behaviors/CommandBarSafeAreaBehavior.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.Android.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Behaviors/FormattingTextBoxBehavior.iOS.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/ApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/ApiConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/LinkerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/LinkerConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/LocalizationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/LocalizationConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/LoggingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/LoggingConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/NavigationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/NavigationConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/PersistenceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/PersistenceConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Configuration/ViewServicesConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Configuration/ViewServicesConfiguration.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/CreateAccountPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/CreateAccountPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/CreateAccountPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/CreateAccountPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ForgotPasswordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ForgotPasswordPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ForgotPasswordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ForgotPasswordPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/LoginPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/LoginPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ResetPasswordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ResetPasswordPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ResetPasswordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/ResetPasswordPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/SentEmailConfirmationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/SentEmailConfirmationPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Authentication/SentEmailConfirmationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Authentication/SentEmailConfirmationPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFavoritesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFavoritesPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFavoritesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFavoritesPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFiltersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFiltersPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFiltersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesFiltersPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesSearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesSearchPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesSearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/DadJokes/DadJokesSearchPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/ConfigurationDebuggerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/ConfigurationDebuggerView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/ConfigurationDebuggerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/ConfigurationDebuggerView.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsOverlay.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsOverlay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsOverlay.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsTabPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/DiagnosticsTabPresenter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/EnvironmentPickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/EnvironmentPickerPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/EnvironmentPickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/EnvironmentPickerPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/HttpDebuggerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/HttpDebuggerView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/HttpDebuggerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/HttpDebuggerView.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/NavigationDebuggerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/NavigationDebuggerView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/NavigationDebuggerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Diagnostics/NavigationDebuggerView.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/ForcedUpdate/ForcedUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/ForcedUpdate/ForcedUpdatePage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/ForcedUpdate/ForcedUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/ForcedUpdate/ForcedUpdatePage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/KillSwitch/KillSwitchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/KillSwitch/KillSwitchPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/KillSwitch/KillSwitchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/KillSwitch/KillSwitchPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Menu.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Menu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Menu.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Posts/EditPostPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Posts/EditPostPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Posts/EditPostPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Posts/EditPostPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Posts/PostsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Posts/PostsPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Posts/PostsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Posts/PostsPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/EditProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/EditProfilePage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/EditProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/EditProfilePage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/LicensesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/LicensesPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/LicensesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/LicensesPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/SettingsPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Settings/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Settings/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Welcome/OnboardingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Welcome/OnboardingPage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Welcome/OnboardingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Welcome/OnboardingPage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Welcome/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Welcome/WelcomePage.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Content/Welcome/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Content/Welcome/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Controls/AppBarBackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Controls/AppBarBackButton.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Controls/BottomTabBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Controls/BottomTabBarButton.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationState.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationStateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationStateType.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Controls/Validation/DataValidationView.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Converters/DebugConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Converters/DebugConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Converters/FiltersConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Converters/FiltersConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Converters/FromNullableAppBarButtonToAppBarButtonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Converters/FromNullableAppBarButtonToAppBarButtonConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Converters/FromNullableBoolToCustomValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Converters/FromNullableBoolToCustomValueConverter.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Framework/AttachableUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Framework/AttachableUserControl.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Framework/DiagnosticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Framework/DiagnosticsService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Framework/ExtendedSplashscreenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Framework/ExtendedSplashscreenController.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Helpers/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Helpers/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Helpers/FrameworkElementExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Helpers/FrameworkElementExtension.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Helpers/ObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Helpers/ObservableExtensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Connectivity/ConnectivityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Connectivity/ConnectivityProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/DeviceInformation/DeviceInformationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/DeviceInformation/DeviceInformationProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Email/EmailService.Mobile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Email/EmailService.Mobile.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Email/EmailService.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Email/EmailService.Windows.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/AppStoreUriProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/AppStoreUriProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/LauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/LauncherService.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/LauncherServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Launcher/LauncherServiceExtensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Memory/MemoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Memory/MemoryProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Memory/MemoryProvider.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Memory/MemoryProvider.iOS.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.Mobile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.Mobile.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.Windows.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/PlatformServices/Version/VersionProvider.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Shell.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Shell.xaml.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Startup.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Strings/en/Resources.resw -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Strings/fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Strings/fr/Resources.resw -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/Brushes.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/ColorPalette.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/ColorPalette.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/Converters.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/Fonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/Fonts.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/Icons.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/LayoutConstants.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/LayoutConstants.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Application/MaterialOverride.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Application/MaterialOverride.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/BottomTabBarButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/BottomTabBarButton.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/Button.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CalendarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CalendarView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CheckBox.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ComboBox.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CommandBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/CommandBar.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/DataLoaderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/DataLoaderView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/DataValidationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/DataValidationView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ExtendedSplashScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ExtendedSplashScreen.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/FlipViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/FlipViewItem.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/Frame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/Frame.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/GridViewHeaderItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/GridViewHeaderItem.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/GridViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/GridViewItem.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/HyperlinkButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/HyperlinkButton.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListView.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListViewHeaderItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListViewHeaderItem.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ListViewItem.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/PasswordBox.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/PathControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/PathControl.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/RadioButton.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/TextBlock.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/TextBox.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ToggleButton.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ToggleSwitch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Shared.Views/Styles/Controls/ToggleSwitch.xaml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Api/ApiTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Api/ApiTestBase.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Api/ApplicationTemplate.Tests.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Api/ApplicationTemplate.Tests.Api.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Api/DadJokesApiClientShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Api/DadJokesApiClientShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Api/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Api/Usings.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/ApplicationTemplate.Tests.Functional.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/ApplicationTemplate.Tests.Functional.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/Authentication/AuthenticationShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/Authentication/AuthenticationShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/DadJokes/DadJokesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/DadJokes/DadJokesShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/ForceUpdate/ForceUpdatesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/ForceUpdate/ForceUpdatesShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/FunctionalTestBase.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/FunctionalTestBase.Extensions.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/FunctionalTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/FunctionalTestBase.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/KillSwitch/KillSwitchShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/KillSwitch/KillSwitchShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/Menu/MenuShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/Menu/MenuShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/Posts/EditPostPageViewModelShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/Posts/EditPostPageViewModelShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/Startup/InitialNavigationShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/Startup/InitialNavigationShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Functional/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Functional/Usings.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/ApplicationTemplate.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/ApplicationTemplate.Tests.Unit.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/AuthenticationServiceShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/AuthenticationServiceShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/Posts/PostServiceShould.Mock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/Posts/PostServiceShould.Mock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/Posts/PostServiceShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/Posts/PostServiceShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/UserProfile/UserProfileServiceShould.Mock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/UserProfile/UserProfileServiceShould.Mock.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests.Unit/UserProfile/UserProfileServiceShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests.Unit/UserProfile/UserProfileServiceShould.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests/ApplicationTemplate.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests/ApplicationTemplate.Tests.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Tests/TestEnvironmentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Tests/TestEnvironmentManager.cs -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/ApplicationTemplate.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/ApplicationTemplate.Windows.csproj -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-16.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-24.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-256.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-32.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-48.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/AppIcon.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/MediumTile.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/TitleBarIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/TitleBarIcon.ico -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/app/ApplicationTemplate.Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/src/app/ApplicationTemplate.Windows/app.manifest -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/stylecop.json -------------------------------------------------------------------------------- /tools/GenerateThirdPartySoftwareLicenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/tools/GenerateThirdPartySoftwareLicenses.ps1 -------------------------------------------------------------------------------- /tools/escape-if-directives.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nventive/UnoApplicationTemplate/HEAD/tools/escape-if-directives.linq --------------------------------------------------------------------------------