├── .config └── dotnet-tools.json ├── .cursorrules ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── .editorconfig ├── actions │ └── publish-artifacts │ │ └── action.yaml ├── compliance │ └── inventory.yml ├── renovate.json └── workflows │ ├── build.yml │ ├── docs.yml │ ├── libtemplate-update.yml │ └── release.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── AGENTS.md ├── Apply-Template.ps1 ├── Build-Packages.proj ├── CLAUDE.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── Expand-Template.ps1 ├── HotPreview-CI.slnf ├── HotPreview-DevTools.slnf ├── HotPreview-Samples.slnf ├── HotPreview.sln ├── HotPreview.sln.DotSettings ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES.txt ├── azure-pipelines.yml ├── azurepipelines-coverage.yml ├── docs ├── .gitignore ├── docfx.json ├── docs │ ├── architecture.md │ ├── attributes.md │ ├── cpp-protocol-schema.json │ ├── cpp-protocol.md │ └── toc.yml ├── index.md └── toc.yml ├── dotnet-install.sh ├── global.json ├── images ├── another-icon.jpeg ├── canva-abstract-e.svg ├── example-framework-icon.png ├── example-framework-icon.svg ├── hot-preview-breakout.gif ├── hot-preview-breakout.mp4 ├── p-logo copy.svg └── p-logo.svg ├── init.cmd ├── init.ps1 ├── nuget.config ├── samples ├── .editorconfig ├── AGENTS.md ├── Directory.Build.props ├── Directory.Build.targets └── maui │ ├── DefaultTemplateWithContent │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Data │ │ ├── CategoryRepository.cs │ │ ├── Constants.cs │ │ ├── DatabaseManager.cs │ │ ├── JsonContext.cs │ │ ├── JsonDataService.cs │ │ ├── MockData.cs │ │ ├── MockDataService.cs │ │ ├── ProjectRepository.cs │ │ ├── Repository.cs │ │ ├── TagRepository.cs │ │ └── TaskRespository.cs │ ├── DefaultTemplateWithContent.csproj │ ├── GlobalUsings.cs │ ├── MauiProgram.cs │ ├── Models │ │ ├── Category.cs │ │ ├── CategoryChartData.cs │ │ ├── Project.cs │ │ ├── ProjectTask.cs │ │ ├── ProjectsTags.cs │ │ └── Tag.cs │ ├── PageModels │ │ ├── IProjectTaskPageModel.cs │ │ ├── MainPageModel.cs │ │ ├── ManageMetaPageModel.cs │ │ ├── ProjectDetailPageModel.cs │ │ ├── ProjectListPageModel.cs │ │ └── TaskDetailPageModel.cs │ ├── Pages │ │ ├── Controls │ │ │ ├── AddButton.xaml │ │ │ ├── AddButton.xaml.cs │ │ │ ├── CategoryChart.xaml │ │ │ ├── CategoryChart.xaml.cs │ │ │ ├── LegendExt.cs │ │ │ ├── ProjectCardView.xaml │ │ │ ├── ProjectCardView.xaml.cs │ │ │ ├── TagView.xaml │ │ │ ├── TagView.xaml.cs │ │ │ ├── TaskView.xaml │ │ │ └── TaskView.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── ManageMetaPage.xaml │ │ ├── ManageMetaPage.xaml.cs │ │ ├── ProjectDetailPage.xaml │ │ ├── ProjectDetailPage.xaml.cs │ │ ├── ProjectListPage.xaml │ │ ├── ProjectListPage.xaml.cs │ │ ├── TaskDetailPage.xaml │ │ └── TaskDetailPage.xaml.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Program.cs │ │ │ └── Resources │ │ │ └── PrivacyInfo.xcprivacy │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ ├── FluentSystemIcons-Regular.ttf │ │ │ ├── FluentUI.cs │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Semibold.ttf │ │ │ └── SegoeUI-Semibold.ttf │ │ ├── Images │ │ │ └── dotnet_bot.png │ │ ├── Raw │ │ │ ├── AboutAssets.txt │ │ │ ├── MockData.json │ │ │ └── SeedData.json │ │ ├── Splash │ │ │ └── splash.svg │ │ └── Styles │ │ │ ├── AppStyles.xaml │ │ │ ├── Colors.xaml │ │ │ └── Styles.xaml │ ├── Services │ │ ├── IErrorHandler.cs │ │ └── ModalErrorHandler.cs │ └── Utilities │ │ ├── ProjectExtentions.cs │ │ └── TaskUtilities.cs │ └── EcommerceMAUI │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ ├── CreditCardView.xaml │ └── CreditCardView.xaml.cs │ ├── Converters │ └── InverseBooleanConverter.cs │ ├── EcommerceMAUI.csproj │ ├── EcommerceMAUI.sln │ ├── GlobalUsings.cs │ ├── Helpers │ ├── CreditCardTypeRegexHelper.cs │ ├── ExtensionMethods │ │ └── StringExtensions.cs │ └── ToastHelper.cs │ ├── MauiProgram.cs │ ├── Model │ ├── AddressModel.cs │ ├── CardInfoModel.cs │ ├── CategoriesModel.cs │ ├── DeliveryStepsModel.cs │ ├── DeliveryTypeModel.cs │ ├── MenuItem.cs │ ├── ProductDetail.cs │ ├── ProductListModel.cs │ ├── TabbedPageModel.cs │ └── TrackOrderModel.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Preview │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── FontAwesome6-Brands.otf │ │ ├── FontAwesome6-Regular.otf │ │ ├── Material-Icon.ttf │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── ViewModel │ ├── AddNewCardViewModel.cs │ ├── AllProductViewModel.cs │ ├── BaseViewModel.cs │ ├── BrandDetailViewModel.cs │ ├── CardViewModel.cs │ ├── CartCalculationModel.cs │ ├── CartViewModel.cs │ ├── CategoryDetailViewModel.cs │ ├── ConfirmAddressViewModel.cs │ ├── ConfirmPaymentViewModel.cs │ ├── DeliveryTypeViewModel.cs │ ├── FinishCartViewModel.cs │ ├── HomePageViewModel.cs │ ├── LoginViewModel.cs │ ├── OrderDetailsViewModel.cs │ ├── ProductDetailsViewModel.cs │ ├── ProfileViewModel.cs │ ├── RegisterViewModel.cs │ ├── ShippingAddressViewModel.cs │ ├── TrackOrderViewModel.cs │ ├── VerificationViewModel.cs │ └── WishListViewModel.cs │ └── Views │ ├── AddNewCardView.xaml │ ├── AddNewCardView.xaml.cs │ ├── AllProductView.xaml │ ├── AllProductView.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── BrandDetailView.xaml │ ├── BrandDetailView.xaml.cs │ ├── CardView.xaml │ ├── CardView.xaml.cs │ ├── CartCalculation.xaml │ ├── CartCalculation.xaml.cs │ ├── CartView.xaml │ ├── CartView.xaml.cs │ ├── CategoryDetailView.xaml │ ├── CategoryDetailView.xaml.cs │ ├── ConfirmAddressView.xaml │ ├── ConfirmAddressView.xaml.cs │ ├── ConfirmPaymentView.xaml │ ├── ConfirmPaymentView.xaml.cs │ ├── DeliveryTypeView.xaml │ ├── DeliveryTypeView.xaml.cs │ ├── FinishCartView.xaml │ ├── FinishCartView.xaml.cs │ ├── HomePageView.xaml │ ├── HomePageView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── OrderDetailsView.xaml │ ├── OrderDetailsView.xaml.cs │ ├── PreviewData.cs │ ├── ProductDetailsView.xaml │ ├── ProductDetailsView.xaml.cs │ ├── ProfileView.xaml │ ├── ProfileView.xaml.cs │ ├── RegisterView.xaml │ ├── RegisterView.xaml.cs │ ├── ScanCameraView.xaml │ ├── ScanCameraView.xaml.cs │ ├── ShippingAddressView.xaml │ ├── ShippingAddressView.xaml.cs │ ├── TrackOrderView.xaml │ ├── TrackOrderView.xaml.cs │ ├── VerificationView.xaml │ ├── VerificationView.xaml.cs │ ├── WishListView.xaml │ └── WishListView.xaml.cs ├── screenshot.png ├── src ├── AssemblyInfo.cs ├── AssemblyInfo.vb ├── Directory.Build.props ├── Directory.Build.targets ├── HotPreview.AppBuildTasks │ ├── GeneratePreviewAppSettingsTask.cs │ ├── HotPreview.AppBuildTasks.csproj │ └── LockFile.cs ├── HotPreview.SharedModel │ ├── App │ │ ├── CommandReflection.cs │ │ ├── GetPreviewsViaReflection.cs │ │ ├── IPreviewNavigator.cs │ │ ├── PreviewAppService.cs │ │ ├── PreviewApplication.cs │ │ ├── PreviewClassReflection.cs │ │ ├── PreviewReflection.cs │ │ ├── PreviewStaticMethodReflection.cs │ │ ├── PreviewsManagerReflection.cs │ │ ├── ToolingAppClientConnection.cs │ │ ├── UIComponentPreviewPairReflection.cs │ │ └── UIComponentReflection.cs │ ├── CommandBase.cs │ ├── HotPreview.SharedModel.csproj │ ├── ILRepack.Exclude.txt │ ├── ILRepack.targets │ ├── IUIComponentExclusionFilter.cs │ ├── PreviewBase.cs │ ├── PreviewNotFoundException.cs │ ├── PreviewsManagerBase.cs │ ├── PreviewsManagerBuilderBase.cs │ ├── Protocol │ │ ├── AppInfo.cs │ │ ├── CommandInfo.cs │ │ ├── HotPreviewJsonRpc.cs │ │ ├── IPreviewAppService.cs │ │ ├── IPreviewAppToolingService.cs │ │ ├── PreviewAppServiceBase.cs │ │ ├── PreviewAppToolingServiceBase.cs │ │ ├── PreviewInfo.cs │ │ ├── PreviewTypeInfo.cs │ │ ├── ToolingInfo.cs │ │ ├── UIComponentCategoryInfo.cs │ │ ├── UIComponentInfo.cs │ │ └── UIComponentKindInfo.cs │ ├── StringUtilities.cs │ ├── UIComponentBase.cs │ ├── UIComponentBaseTypes.cs │ ├── UIComponentCategory.cs │ ├── UIComponentKind.cs │ ├── UIComponentNotFoundException.cs │ ├── UIComponentPreviewPair.cs │ └── buildTransitive │ │ └── HotPreview.SharedModel.targets ├── HotPreview │ ├── AutoGeneratePreviewAttribute.cs │ ├── ControlUIComponentBaseTypeAttribute.cs │ ├── HotPreview.csproj │ ├── NameUtilities.cs │ ├── PageUIComponentBaseTypeAttribute.cs │ ├── PreviewAttribute.cs │ ├── PreviewCommandAttribute.cs │ ├── RoutePreview.cs │ ├── SpecialUIComponentNames.cs │ ├── UIComponentAttribute.cs │ ├── UIComponentCategoryAttribute.cs │ └── buildTransitive │ │ ├── HotPreview.props │ │ └── README.md ├── icons │ └── README.md ├── platforms │ ├── HotPreview.App.Maui │ │ ├── HotPreview.App.Maui.csproj │ │ ├── IconUtilities │ │ │ └── IconUtilities.cs │ │ ├── MauiPreviewAppService.cs │ │ ├── MauiPreviewApplication.MaciOS.cs │ │ ├── MauiPreviewApplication.Windows.cs │ │ ├── MauiPreviewApplication.cs │ │ ├── MauiPreviewNavigatorService.cs │ │ ├── MauiUIComponentExclusionFilter.cs │ │ ├── Pages │ │ │ ├── PreviewItemDataTemplateSelector.cs │ │ │ ├── PreviewsPage.xaml │ │ │ └── PreviewsPage.xaml.cs │ │ ├── PreviewExtensions.cs │ │ ├── Resources │ │ │ ├── IconsDark │ │ │ │ ├── ic_preview_control__dark.svg │ │ │ │ └── ic_preview_page__dark.svg │ │ │ ├── IconsLight │ │ │ │ ├── ic_preview_control__light.svg │ │ │ │ └── ic_preview_page__light.svg │ │ │ └── README.md │ │ ├── ViewModels │ │ │ ├── PreviewViewModel.cs │ │ │ ├── PreviewsItemViewModel.cs │ │ │ ├── PreviewsViewModel.cs │ │ │ ├── UIComponentCategoryViewModel.cs │ │ │ └── UIComponentViewModel.cs │ │ └── build │ │ │ ├── HotPreview.App.Maui.targets │ │ │ └── LocalTest.targets │ └── HotPreview.App.Wpf │ │ ├── HotPreview.App.Wpf.csproj │ │ ├── WpfExampleApplication.cs │ │ ├── WpfPreviewAppService.cs │ │ └── WpfPreviewNavigatorService.cs └── tooling │ ├── HotPreview.DevTools │ ├── HotPreview.DevTools.csproj │ └── Program.cs │ ├── HotPreview.DevToolsApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Icons │ │ │ └── icon.svg │ │ ├── SharedAssets.md │ │ └── Splash │ │ │ └── splash_screen.svg │ ├── Converters │ │ ├── BoolToVisibilityConverter.cs │ │ └── Converters.cs │ ├── DevToolsManager.cs │ ├── GlobalUsings.cs │ ├── HotPreview.DevToolsApp.csproj │ ├── Models │ │ └── AppConfig.cs │ ├── Package.appxmanifest │ ├── Platforms │ │ └── Desktop │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ReadMe.md │ ├── Selectors │ │ ├── NavTreeItemTemplateSelector.cs │ │ └── NavTreeToolTipTemplateSelector.cs │ ├── Services │ │ └── Endpoints │ │ │ └── DebugHandler.cs │ ├── SingleInstanceManager.cs │ ├── Strings │ │ └── en │ │ │ └── Resources.resw │ ├── Utilities │ │ └── BulkObservableCollection.cs │ ├── ViewModels │ │ ├── MainPageViewModel.cs │ │ ├── NavTree │ │ │ ├── CommandViewModel.cs │ │ │ ├── NavTreeItemViewModel.cs │ │ │ ├── PreviewViewModel.cs │ │ │ ├── SectionItemViewModel.cs │ │ │ └── UIComponentViewModel.cs │ │ └── ShellViewModel.cs │ ├── Views │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Shell.xaml │ │ └── Shell.xaml.cs │ ├── app.manifest │ ├── appsettings.development.json │ └── appsettings.json │ └── HotPreview.Tooling │ ├── AppConnectionManager.cs │ ├── AppManager.cs │ ├── AppsManager.cs │ ├── CommandTooling.cs │ ├── ConnectionSettingsJson.cs │ ├── GetPreviewsConsolidated.cs │ ├── GetPreviewsFromProtocol.cs │ ├── GetPreviewsFromRoslyn.cs │ ├── HotPreview.Tooling.csproj │ ├── ImageSnapshot.cs │ ├── ImageSnapshotFormat.cs │ ├── ImageSnapshotFormatExtensions.cs │ ├── McpServer │ ├── .gitignore │ ├── Helpers │ │ ├── Adb.cs │ │ └── Idb.cs │ ├── Interfaces │ │ └── IProcessService.cs │ ├── LICENSE │ ├── McpHttpServerService.cs │ ├── Models │ │ ├── AdbDevice.cs │ │ ├── LogCatLogLevel.cs │ │ └── SimulatorDevice.cs │ ├── Prompts │ │ └── Prompts.cs │ ├── README.md │ ├── Services │ │ └── ProcessService.cs │ └── Tools │ │ ├── Android │ │ ├── AndroidAppManagementTool.cs │ │ ├── AndroidDeviceTool.cs │ │ ├── AndroidDiagnosticsTool.cs │ │ ├── AndroidFilesTool.cs │ │ ├── AndroidLogTool.cs │ │ ├── AndroidScreenshotLlmTool.cs │ │ ├── AndroidScreenshotTool.cs │ │ ├── AndroidShellTool.cs │ │ └── AndroidUiTool.cs │ │ ├── Desktop │ │ └── DesktopCaptureScreen.cs │ │ ├── Preview │ │ └── GetPreviewSnapshotTool.cs │ │ └── iOS │ │ ├── IosAppManagementTool.cs │ │ ├── IosDeviceTool.cs │ │ ├── IosScreenshotTool.cs │ │ ├── IosUiTool.cs │ │ └── IosVideoRecordingTool.cs │ ├── PreviewClassTooling.cs │ ├── PreviewStaticMethodTooling.cs │ ├── PreviewTooling.cs │ ├── PreviewsManagerBuilderTooling.cs │ ├── PreviewsManagerTooling.cs │ ├── Services │ ├── StatusReporter.cs │ └── UIContextProvider.cs │ ├── Settings.cs │ ├── SpecialUIComponentNames.cs │ ├── ToolingAppServerConnectionListener.cs │ ├── ToolingObservableObject.cs │ ├── UIComponentPreviewPairTooling.cs │ ├── UIComponentTooling.cs │ └── VisualTestUtils │ ├── IImageEditor.cs │ ├── IImageEditorFactory.cs │ ├── ITestContext.cs │ ├── IVisualComparer.cs │ ├── IVisualDiffGenerator.cs │ ├── ImageDifference.cs │ ├── ImagePercentageDifference.cs │ ├── ImageSizeDifference.cs │ ├── MagickNet │ ├── MagickNetImageEditor.cs │ ├── MagickNetImageEditorFactory.cs │ ├── MagickNetVisualComparer.cs │ └── MagickNetVisualDiffGenerator.cs │ ├── VisualRegressionTester.cs │ └── VisualTestFailedException.cs ├── strongname.snk ├── test ├── .editorconfig ├── AutoGeneratePreviewTest.cs ├── Directory.Build.props ├── HotPreview.SharedModel.Tests │ ├── HotPreview.SharedModel.Tests.csproj │ └── StringUtilitiesTests.cs ├── HotPreview.Tests │ ├── CalculatorTests.cs │ ├── HotPreview.Tests.csproj │ ├── UIComponentAttributeTests.cs │ └── xunit.runner.json └── HotPreview.Tooling.Tests │ ├── HotPreview.Tooling.Tests.csproj │ ├── McpServer │ ├── AlternativeMcpConfigTest.cs │ ├── AndroidAppManagementToolTests.cs │ ├── AndroidDeviceToolTests.cs │ ├── IosDeviceToolTests.cs │ ├── McpEndpointDebugTest.cs │ ├── McpEndpointDiscoveryTest.cs │ ├── McpHttpServerServiceTests.cs │ ├── McpServerIntegrationTests.cs │ ├── SimpleEndpointTest.cs │ ├── TestHelpers │ │ ├── McpTestClient.cs │ │ ├── MockCommandExecutor.cs │ │ └── TempDirectoryHelper.cs │ ├── ToolDiscoveryTests.cs │ └── WorkingMcpIntegrationTests.cs │ ├── PreviewsManagerToolingTests.cs │ └── ToolingAppServerConnectionListenerTests.cs ├── tools ├── Check-DotNetRuntime.ps1 ├── Check-DotNetSdk.ps1 ├── Get-3rdPartySymbolFiles.ps1 ├── Get-ArtifactsStagingDirectory.ps1 ├── Get-CodeCovTool.ps1 ├── Get-LibTemplateBasis.ps1 ├── Get-NuGetTool.ps1 ├── Get-ProcDump.ps1 ├── Get-SymbolFiles.ps1 ├── Get-TempToolsPath.ps1 ├── Install-DotNetSdk.ps1 ├── Install-NuGetCredProvider.ps1 ├── MergeFrom-Template.ps1 ├── Set-EnvVars.ps1 ├── artifacts │ ├── Variables.ps1 │ ├── _all.ps1 │ ├── _stage_all.ps1 │ ├── build_logs.ps1 │ ├── coverageResults.ps1 │ ├── deployables.ps1 │ ├── projectAssetsJson.ps1 │ ├── symbols.ps1 │ ├── testResults.ps1 │ └── test_symbols.ps1 ├── dotnet-test-cloud.ps1 ├── libtemplate-update.yml ├── publish-CodeCov.ps1 ├── test.runsettings └── variables │ ├── DotNetSdkVersion.ps1 │ ├── _all.ps1 │ └── _define.ps1 └── version.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.cursorrules -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [renovate.json*] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/actions/publish-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/actions/publish-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/compliance/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/compliance/inventory.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/workflows/libtemplate-update.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Apply-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Apply-Template.ps1 -------------------------------------------------------------------------------- /Build-Packages.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Build-Packages.proj -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Expand-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/Expand-Template.ps1 -------------------------------------------------------------------------------- /HotPreview-CI.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/HotPreview-CI.slnf -------------------------------------------------------------------------------- /HotPreview-DevTools.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/HotPreview-DevTools.slnf -------------------------------------------------------------------------------- /HotPreview-Samples.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/HotPreview-Samples.slnf -------------------------------------------------------------------------------- /HotPreview.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/HotPreview.sln -------------------------------------------------------------------------------- /HotPreview.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/HotPreview.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azurepipelines-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/azurepipelines-coverage.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | api/ 3 | -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docs/architecture.md -------------------------------------------------------------------------------- /docs/docs/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docs/attributes.md -------------------------------------------------------------------------------- /docs/docs/cpp-protocol-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docs/cpp-protocol-schema.json -------------------------------------------------------------------------------- /docs/docs/cpp-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docs/cpp-protocol.md -------------------------------------------------------------------------------- /docs/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/docs/toc.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_url: docs/attributes.html 3 | --- 4 | -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/dotnet-install.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/global.json -------------------------------------------------------------------------------- /images/another-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/another-icon.jpeg -------------------------------------------------------------------------------- /images/canva-abstract-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/canva-abstract-e.svg -------------------------------------------------------------------------------- /images/example-framework-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/example-framework-icon.png -------------------------------------------------------------------------------- /images/example-framework-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/example-framework-icon.svg -------------------------------------------------------------------------------- /images/hot-preview-breakout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/hot-preview-breakout.gif -------------------------------------------------------------------------------- /images/hot-preview-breakout.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/hot-preview-breakout.mp4 -------------------------------------------------------------------------------- /images/p-logo copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/p-logo copy.svg -------------------------------------------------------------------------------- /images/p-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/images/p-logo.svg -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/init.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/nuget.config -------------------------------------------------------------------------------- /samples/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/.editorconfig -------------------------------------------------------------------------------- /samples/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/AGENTS.md -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/Directory.Build.targets -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/App.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/App.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/AppShell.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/AppShell.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/CategoryRepository.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/Constants.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/DatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/DatabaseManager.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/JsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/JsonContext.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/JsonDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/JsonDataService.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/MockData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/MockData.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/MockDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/MockDataService.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/ProjectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/ProjectRepository.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/Repository.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/TagRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/TagRepository.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Data/TaskRespository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Data/TaskRespository.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/DefaultTemplateWithContent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/DefaultTemplateWithContent.csproj -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/GlobalUsings.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/MauiProgram.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/Category.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/CategoryChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/CategoryChartData.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/Project.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/ProjectTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/ProjectTask.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/ProjectsTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/ProjectsTags.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Models/Tag.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/IProjectTaskPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/IProjectTaskPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/MainPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/MainPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/ManageMetaPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/ManageMetaPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/ProjectDetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/ProjectDetailPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/ProjectListPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/ProjectListPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/PageModels/TaskDetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/PageModels/TaskDetailPageModel.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/AddButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/AddButton.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/AddButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/AddButton.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/CategoryChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/CategoryChart.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/CategoryChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/CategoryChart.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/LegendExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/LegendExt.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/ProjectCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/ProjectCardView.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/ProjectCardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/ProjectCardView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/TagView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/TagView.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/TagView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/TagView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/TaskView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/TaskView.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/Controls/TaskView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/Controls/TaskView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/MainPage.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ManageMetaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ManageMetaPage.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ManageMetaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ManageMetaPage.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ProjectDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ProjectDetailPage.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ProjectDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ProjectDetailPage.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ProjectListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ProjectListPage.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/ProjectListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/ProjectListPage.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/TaskDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/TaskDetailPage.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Pages/TaskDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Pages/TaskDetailPage.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Platforms/iOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Platforms/iOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Fonts/FluentUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Fonts/FluentUI.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Fonts/SegoeUI-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Fonts/SegoeUI-Semibold.ttf -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Images/dotnet_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Images/dotnet_bot.png -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Raw/MockData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Raw/MockData.json -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Raw/SeedData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Raw/SeedData.json -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Styles/AppStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Styles/AppStyles.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Services/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Services/IErrorHandler.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Services/ModalErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Services/ModalErrorHandler.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Utilities/ProjectExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Utilities/ProjectExtentions.cs -------------------------------------------------------------------------------- /samples/maui/DefaultTemplateWithContent/Utilities/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/DefaultTemplateWithContent/Utilities/TaskUtilities.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/App.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/App.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Controls/CreditCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Controls/CreditCardView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Controls/CreditCardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Controls/CreditCardView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/EcommerceMAUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/EcommerceMAUI.csproj -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/EcommerceMAUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/EcommerceMAUI.sln -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | #if PREVIEWS 2 | global using HotPreview; 3 | #endif 4 | -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Helpers/CreditCardTypeRegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Helpers/CreditCardTypeRegexHelper.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Helpers/ExtensionMethods/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Helpers/ExtensionMethods/StringExtensions.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Helpers/ToastHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Helpers/ToastHelper.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/MauiProgram.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/AddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/AddressModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/CardInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/CardInfoModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/CategoriesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/CategoriesModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/DeliveryStepsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/DeliveryStepsModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/DeliveryTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/DeliveryTypeModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/MenuItem.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/ProductDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/ProductDetail.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/ProductListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/ProductListModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/TabbedPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/TabbedPageModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Model/TrackOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Model/TrackOrderModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/1.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/10.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/11.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/2.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/3.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/4.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/5.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/6.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/7.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/8.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Preview/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Preview/9.png -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/README.md -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Fonts/FontAwesome6-Brands.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Fonts/FontAwesome6-Brands.otf -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Fonts/FontAwesome6-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Fonts/FontAwesome6-Regular.otf -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Fonts/Material-Icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Fonts/Material-Icon.ttf -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/AddNewCardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/AddNewCardViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/AllProductViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/AllProductViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/BaseViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/BrandDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/BrandDetailViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/CardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/CardViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/CartCalculationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/CartCalculationModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/CartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/CartViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/CategoryDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/CategoryDetailViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/ConfirmAddressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/ConfirmAddressViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/ConfirmPaymentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/ConfirmPaymentViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/DeliveryTypeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/DeliveryTypeViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/FinishCartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/FinishCartViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/HomePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/HomePageViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/LoginViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/OrderDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/OrderDetailsViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/ProductDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/ProductDetailsViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/ProfileViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/RegisterViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/ShippingAddressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/ShippingAddressViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/TrackOrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/TrackOrderViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/VerificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/VerificationViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/ViewModel/WishListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/ViewModel/WishListViewModel.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AddNewCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AddNewCardView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AddNewCardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AddNewCardView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AllProductView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AllProductView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AllProductView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AllProductView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AppShell.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/AppShell.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/BrandDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/BrandDetailView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/BrandDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/BrandDetailView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CardView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CardView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CartCalculation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CartCalculation.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CartCalculation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CartCalculation.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CartView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CartView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CategoryDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CategoryDetailView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/CategoryDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/CategoryDetailView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ConfirmAddressView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ConfirmAddressView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ConfirmAddressView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ConfirmAddressView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ConfirmPaymentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ConfirmPaymentView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ConfirmPaymentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ConfirmPaymentView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/DeliveryTypeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/DeliveryTypeView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/DeliveryTypeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/DeliveryTypeView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/FinishCartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/FinishCartView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/FinishCartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/FinishCartView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/HomePageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/HomePageView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/HomePageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/HomePageView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/LoginView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/OrderDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/OrderDetailsView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/OrderDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/OrderDetailsView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/PreviewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/PreviewData.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ProductDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ProductDetailsView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ProductDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ProductDetailsView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ProfileView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ProfileView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/RegisterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/RegisterView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/RegisterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/RegisterView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ScanCameraView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ScanCameraView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ScanCameraView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ScanCameraView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ShippingAddressView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ShippingAddressView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/ShippingAddressView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/ShippingAddressView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/TrackOrderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/TrackOrderView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/TrackOrderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/TrackOrderView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/VerificationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/VerificationView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/VerificationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/VerificationView.xaml.cs -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/WishListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/WishListView.xaml -------------------------------------------------------------------------------- /samples/maui/EcommerceMAUI/Views/WishListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/samples/maui/EcommerceMAUI/Views/WishListView.xaml.cs -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/HotPreview.AppBuildTasks/GeneratePreviewAppSettingsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.AppBuildTasks/GeneratePreviewAppSettingsTask.cs -------------------------------------------------------------------------------- /src/HotPreview.AppBuildTasks/HotPreview.AppBuildTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.AppBuildTasks/HotPreview.AppBuildTasks.csproj -------------------------------------------------------------------------------- /src/HotPreview.AppBuildTasks/LockFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.AppBuildTasks/LockFile.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/CommandReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/CommandReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/GetPreviewsViaReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/GetPreviewsViaReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/IPreviewNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/IPreviewNavigator.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewAppService.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewApplication.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewClassReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewClassReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewStaticMethodReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewStaticMethodReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/PreviewsManagerReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/PreviewsManagerReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/ToolingAppClientConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/ToolingAppClientConnection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/UIComponentPreviewPairReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/UIComponentPreviewPairReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/App/UIComponentReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/App/UIComponentReflection.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/CommandBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/HotPreview.SharedModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/HotPreview.SharedModel.csproj -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/ILRepack.Exclude.txt: -------------------------------------------------------------------------------- 1 | StreamJsonRpc.* 2 | -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/ILRepack.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/ILRepack.targets -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/IUIComponentExclusionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/IUIComponentExclusionFilter.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/PreviewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/PreviewBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/PreviewNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/PreviewNotFoundException.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/PreviewsManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/PreviewsManagerBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/PreviewsManagerBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/PreviewsManagerBuilderBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/AppInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/CommandInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/HotPreviewJsonRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/HotPreviewJsonRpc.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/IPreviewAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/IPreviewAppService.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/IPreviewAppToolingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/IPreviewAppToolingService.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/PreviewAppServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/PreviewAppServiceBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/PreviewAppToolingServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/PreviewAppToolingServiceBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/PreviewInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/PreviewInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/PreviewTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/PreviewTypeInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/ToolingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/ToolingInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/UIComponentCategoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/UIComponentCategoryInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/UIComponentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/UIComponentInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/Protocol/UIComponentKindInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/Protocol/UIComponentKindInfo.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/StringUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/StringUtilities.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentBase.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentBaseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentBaseTypes.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentCategory.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentKind.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentNotFoundException.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/UIComponentPreviewPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/UIComponentPreviewPair.cs -------------------------------------------------------------------------------- /src/HotPreview.SharedModel/buildTransitive/HotPreview.SharedModel.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview.SharedModel/buildTransitive/HotPreview.SharedModel.targets -------------------------------------------------------------------------------- /src/HotPreview/AutoGeneratePreviewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/AutoGeneratePreviewAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/ControlUIComponentBaseTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/ControlUIComponentBaseTypeAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/HotPreview.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/HotPreview.csproj -------------------------------------------------------------------------------- /src/HotPreview/NameUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/NameUtilities.cs -------------------------------------------------------------------------------- /src/HotPreview/PageUIComponentBaseTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/PageUIComponentBaseTypeAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/PreviewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/PreviewAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/PreviewCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/PreviewCommandAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/RoutePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/RoutePreview.cs -------------------------------------------------------------------------------- /src/HotPreview/SpecialUIComponentNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/SpecialUIComponentNames.cs -------------------------------------------------------------------------------- /src/HotPreview/UIComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/UIComponentAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/UIComponentCategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/UIComponentCategoryAttribute.cs -------------------------------------------------------------------------------- /src/HotPreview/buildTransitive/HotPreview.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/buildTransitive/HotPreview.props -------------------------------------------------------------------------------- /src/HotPreview/buildTransitive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/HotPreview/buildTransitive/README.md -------------------------------------------------------------------------------- /src/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/icons/README.md -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/HotPreview.App.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/HotPreview.App.Maui.csproj -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/IconUtilities/IconUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/IconUtilities/IconUtilities.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiPreviewAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiPreviewAppService.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiPreviewApplication.MaciOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiPreviewApplication.MaciOS.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiPreviewApplication.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiPreviewApplication.Windows.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiPreviewApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiPreviewApplication.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiPreviewNavigatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiPreviewNavigatorService.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/MauiUIComponentExclusionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/MauiUIComponentExclusionFilter.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Pages/PreviewItemDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Pages/PreviewItemDataTemplateSelector.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Pages/PreviewsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Pages/PreviewsPage.xaml -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Pages/PreviewsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Pages/PreviewsPage.xaml.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/PreviewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/PreviewExtensions.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Resources/IconsDark/ic_preview_control__dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Resources/IconsDark/ic_preview_control__dark.svg -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Resources/IconsDark/ic_preview_page__dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Resources/IconsDark/ic_preview_page__dark.svg -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Resources/IconsLight/ic_preview_control__light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Resources/IconsLight/ic_preview_control__light.svg -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Resources/IconsLight/ic_preview_page__light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Resources/IconsLight/ic_preview_page__light.svg -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/Resources/README.md -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/ViewModels/PreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/ViewModels/PreviewViewModel.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/ViewModels/PreviewsItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/ViewModels/PreviewsItemViewModel.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/ViewModels/PreviewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/ViewModels/PreviewsViewModel.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/ViewModels/UIComponentCategoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/ViewModels/UIComponentCategoryViewModel.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/ViewModels/UIComponentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/ViewModels/UIComponentViewModel.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/build/HotPreview.App.Maui.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/build/HotPreview.App.Maui.targets -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Maui/build/LocalTest.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Maui/build/LocalTest.targets -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Wpf/HotPreview.App.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Wpf/HotPreview.App.Wpf.csproj -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Wpf/WpfExampleApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Wpf/WpfExampleApplication.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Wpf/WpfPreviewAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Wpf/WpfPreviewAppService.cs -------------------------------------------------------------------------------- /src/platforms/HotPreview.App.Wpf/WpfPreviewNavigatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/platforms/HotPreview.App.Wpf/WpfPreviewNavigatorService.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevTools/HotPreview.DevTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevTools/HotPreview.DevTools.csproj -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevTools/Program.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/App.xaml -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/App.xaml.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Assets/Icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Assets/Icons/icon.svg -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Assets/SharedAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Assets/SharedAssets.md -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Assets/Splash/splash_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Assets/Splash/splash_screen.svg -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Converters/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Converters/Converters.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/DevToolsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/DevToolsManager.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/GlobalUsings.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/HotPreview.DevToolsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/HotPreview.DevToolsApp.csproj -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Models/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Models/AppConfig.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Package.appxmanifest -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Platforms/Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Platforms/Desktop/Program.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ReadMe.md -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Selectors/NavTreeItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Selectors/NavTreeItemTemplateSelector.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Selectors/NavTreeToolTipTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Selectors/NavTreeToolTipTemplateSelector.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Services/Endpoints/DebugHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Services/Endpoints/DebugHandler.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/SingleInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/SingleInstanceManager.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Strings/en/Resources.resw -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Utilities/BulkObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Utilities/BulkObservableCollection.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/CommandViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/CommandViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/NavTreeItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/NavTreeItemViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/PreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/PreviewViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/SectionItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/SectionItemViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/UIComponentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/NavTree/UIComponentViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Views/MainPage.xaml -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Views/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Views/Shell.xaml -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/Views/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/Views/Shell.xaml.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/app.manifest -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/appsettings.development.json -------------------------------------------------------------------------------- /src/tooling/HotPreview.DevToolsApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.DevToolsApp/appsettings.json -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/AppConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/AppConnectionManager.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/AppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/AppManager.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/AppsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/AppsManager.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/CommandTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/CommandTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ConnectionSettingsJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ConnectionSettingsJson.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/GetPreviewsConsolidated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/GetPreviewsConsolidated.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/GetPreviewsFromProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/GetPreviewsFromProtocol.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/GetPreviewsFromRoslyn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/GetPreviewsFromRoslyn.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/HotPreview.Tooling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/HotPreview.Tooling.csproj -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ImageSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ImageSnapshot.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ImageSnapshotFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ImageSnapshotFormat.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ImageSnapshotFormatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ImageSnapshotFormatExtensions.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/.gitignore -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Helpers/Adb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Helpers/Adb.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Helpers/Idb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Helpers/Idb.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Interfaces/IProcessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Interfaces/IProcessService.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/LICENSE -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/McpHttpServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/McpHttpServerService.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Models/AdbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Models/AdbDevice.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Models/LogCatLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Models/LogCatLogLevel.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Models/SimulatorDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Models/SimulatorDevice.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Prompts/Prompts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Prompts/Prompts.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/README.md -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Services/ProcessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Services/ProcessService.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidAppManagementTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidAppManagementTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidDeviceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidDeviceTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidDiagnosticsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidDiagnosticsTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidFilesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidFilesTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidLogTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidLogTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidScreenshotLlmTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidScreenshotLlmTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidScreenshotTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidScreenshotTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidShellTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidShellTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidUiTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Android/AndroidUiTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Desktop/DesktopCaptureScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Desktop/DesktopCaptureScreen.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/Preview/GetPreviewSnapshotTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/Preview/GetPreviewSnapshotTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosAppManagementTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosAppManagementTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosDeviceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosDeviceTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosScreenshotTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosScreenshotTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosUiTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosUiTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosVideoRecordingTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/McpServer/Tools/iOS/IosVideoRecordingTool.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/PreviewClassTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/PreviewClassTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/PreviewStaticMethodTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/PreviewStaticMethodTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/PreviewTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/PreviewTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/PreviewsManagerBuilderTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/PreviewsManagerBuilderTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/PreviewsManagerTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/PreviewsManagerTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/Services/StatusReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/Services/StatusReporter.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/Services/UIContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/Services/UIContextProvider.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/Settings.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/SpecialUIComponentNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/SpecialUIComponentNames.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ToolingAppServerConnectionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ToolingAppServerConnectionListener.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/ToolingObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/ToolingObservableObject.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/UIComponentPreviewPairTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/UIComponentPreviewPairTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/UIComponentTooling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/UIComponentTooling.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/IImageEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/IImageEditor.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/IImageEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/IImageEditorFactory.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/ITestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/ITestContext.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/IVisualComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/IVisualComparer.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/IVisualDiffGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/IVisualDiffGenerator.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/ImageDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/ImageDifference.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/ImagePercentageDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/ImagePercentageDifference.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/ImageSizeDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/ImageSizeDifference.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetImageEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetImageEditor.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetImageEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetImageEditorFactory.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetVisualComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetVisualComparer.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetVisualDiffGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/MagickNet/MagickNetVisualDiffGenerator.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/VisualRegressionTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/VisualRegressionTester.cs -------------------------------------------------------------------------------- /src/tooling/HotPreview.Tooling/VisualTestUtils/VisualTestFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/src/tooling/HotPreview.Tooling/VisualTestUtils/VisualTestFailedException.cs -------------------------------------------------------------------------------- /strongname.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/strongname.snk -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/AutoGeneratePreviewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/AutoGeneratePreviewTest.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/HotPreview.SharedModel.Tests/HotPreview.SharedModel.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.SharedModel.Tests/HotPreview.SharedModel.Tests.csproj -------------------------------------------------------------------------------- /test/HotPreview.SharedModel.Tests/StringUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.SharedModel.Tests/StringUtilitiesTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tests/CalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tests/CalculatorTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tests/HotPreview.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tests/HotPreview.Tests.csproj -------------------------------------------------------------------------------- /test/HotPreview.Tests/UIComponentAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tests/UIComponentAttributeTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/HotPreview.Tooling.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/HotPreview.Tooling.Tests.csproj -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/AlternativeMcpConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/AlternativeMcpConfigTest.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/AndroidAppManagementToolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/AndroidAppManagementToolTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/AndroidDeviceToolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/AndroidDeviceToolTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/IosDeviceToolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/IosDeviceToolTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/McpEndpointDebugTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/McpEndpointDebugTest.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/McpEndpointDiscoveryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/McpEndpointDiscoveryTest.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/McpHttpServerServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/McpHttpServerServiceTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/McpServerIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/McpServerIntegrationTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/SimpleEndpointTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/SimpleEndpointTest.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/TestHelpers/McpTestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/TestHelpers/McpTestClient.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/TestHelpers/MockCommandExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/TestHelpers/MockCommandExecutor.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/TestHelpers/TempDirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/TestHelpers/TempDirectoryHelper.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/ToolDiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/ToolDiscoveryTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/McpServer/WorkingMcpIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/McpServer/WorkingMcpIntegrationTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/PreviewsManagerToolingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/PreviewsManagerToolingTests.cs -------------------------------------------------------------------------------- /test/HotPreview.Tooling.Tests/ToolingAppServerConnectionListenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/test/HotPreview.Tooling.Tests/ToolingAppServerConnectionListenerTests.cs -------------------------------------------------------------------------------- /tools/Check-DotNetRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Check-DotNetRuntime.ps1 -------------------------------------------------------------------------------- /tools/Check-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Check-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Get-3rdPartySymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-3rdPartySymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-ArtifactsStagingDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-ArtifactsStagingDirectory.ps1 -------------------------------------------------------------------------------- /tools/Get-CodeCovTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-CodeCovTool.ps1 -------------------------------------------------------------------------------- /tools/Get-LibTemplateBasis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-LibTemplateBasis.ps1 -------------------------------------------------------------------------------- /tools/Get-NuGetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-NuGetTool.ps1 -------------------------------------------------------------------------------- /tools/Get-ProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-ProcDump.ps1 -------------------------------------------------------------------------------- /tools/Get-SymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-SymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-TempToolsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Get-TempToolsPath.ps1 -------------------------------------------------------------------------------- /tools/Install-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Install-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetCredProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Install-NuGetCredProvider.ps1 -------------------------------------------------------------------------------- /tools/MergeFrom-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/MergeFrom-Template.ps1 -------------------------------------------------------------------------------- /tools/Set-EnvVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/Set-EnvVars.ps1 -------------------------------------------------------------------------------- /tools/artifacts/Variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/Variables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_stage_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/_stage_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/build_logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/build_logs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/coverageResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/coverageResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/deployables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/projectAssetsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/projectAssetsJson.ps1 -------------------------------------------------------------------------------- /tools/artifacts/symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/symbols.ps1 -------------------------------------------------------------------------------- /tools/artifacts/testResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/testResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/test_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/artifacts/test_symbols.ps1 -------------------------------------------------------------------------------- /tools/dotnet-test-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/dotnet-test-cloud.ps1 -------------------------------------------------------------------------------- /tools/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/libtemplate-update.yml -------------------------------------------------------------------------------- /tools/publish-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/publish-CodeCov.ps1 -------------------------------------------------------------------------------- /tools/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/test.runsettings -------------------------------------------------------------------------------- /tools/variables/DotNetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/variables/DotNetSdkVersion.ps1 -------------------------------------------------------------------------------- /tools/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/variables/_all.ps1 -------------------------------------------------------------------------------- /tools/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/tools/variables/_define.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretJohnson/hot-preview/HEAD/version.json --------------------------------------------------------------------------------