├── .github └── FUNDING.yml ├── .gitignore ├── Artifacts ├── Batch.zip └── PowerShell.zip ├── LICENSE ├── README.md ├── global.json ├── images ├── add-new-item.png ├── dotnetmaui-all-in-one-app-project-options.png ├── dotnetmaui-all-in-one-project-template-pinned.png ├── dotnetmaui-class-library-project-options.png ├── dotnetmaui-generic-item-popup.png ├── maui-project-templates.png ├── shared-class-library-project-options.png └── vs-manage-extensions.png └── src ├── Extensions ├── MauiItemTemplates │ ├── MauiItemTemplates.sln │ └── MauiItemTemplates │ │ ├── CodeSnippets │ │ ├── horizontalStack.snippet │ │ ├── stack.snippet │ │ └── verticalStack.snippet │ │ ├── ItemTemplates │ │ ├── MauiPageCS.zip │ │ ├── MauiPageXaml.zip │ │ ├── MauiResDict.zip │ │ ├── MauiShell.zip │ │ ├── MauiViewCS.zip │ │ └── MauiViewXaml.zip │ │ ├── MauiItemTemplates.csproj │ │ ├── ProjectTemplates │ │ └── MauiClassLib.zip │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ └── Icon.png │ │ ├── license.txt │ │ ├── readme.rtf │ │ ├── release-notes.txt │ │ ├── source.extension.cs │ │ └── source.extension.vsixmanifest └── MauiTemplates │ ├── MauiTemplates.sln │ └── MauiTemplates │ ├── Assets │ └── VijayAnand.MauiTemplates.8.0.0.nupkg │ ├── Command.cs │ ├── CommandOfT.cs │ ├── CustomActionWizard.cs │ ├── Extensions │ └── StringExtensions.cs │ ├── ItemTemplates │ ├── CometPageCS.zip │ ├── MauiBlazorWebView.zip │ ├── MauiBlazorWebViewCS.zip │ ├── MauiHandler.zip │ ├── MauiHandlerReg.zip │ ├── MauiItem.zip │ ├── MauiItemCS.zip │ ├── MauiPage.zip │ ├── MauiPageCS.zip │ ├── MauiPageCSWithViewModel.zip │ ├── MauiPageRazor.zip │ ├── MauiPageWithViewModel.zip │ ├── MauiRenderer.zip │ ├── MauiRendererReg.zip │ ├── MauiResDict.zip │ ├── MauiResDictXaml.zip │ ├── MauiShell.zip │ ├── MauiShellCS.zip │ ├── MauiShellRazor.zip │ ├── MauiView.zip │ ├── MauiViewCS.zip │ ├── MauiViewRazor.zip │ └── PartialClass.zip │ ├── MauiCSharpSnippets.pkgdef │ ├── MauiSnippets │ ├── CSharp │ │ ├── asyncEventHandler.snippet │ │ ├── asyncMethod.snippet │ │ ├── asyncRelayCommand.snippet │ │ ├── attachedProperty.snippet │ │ ├── bindableProperty.snippet │ │ ├── cometProperty.snippet │ │ ├── crossPlatform.snippet │ │ ├── eventHandler.snippet │ │ ├── markupExtnMethod.snippet │ │ ├── method.snippet │ │ ├── observableProperty.snippet │ │ ├── record.snippet │ │ ├── recordStruct.snippet │ │ ├── relayCommand.snippet │ │ └── viewModelProperty.snippet │ └── Xaml │ │ ├── blazorWebView.snippet │ │ ├── color.snippet │ │ ├── dragGestureRecognizer.snippet │ │ ├── dropGestureRecognizer.snippet │ │ ├── flexLayout.snippet │ │ ├── gestureRecognizers.snippet │ │ ├── gridLayout.snippet │ │ ├── horizontalStack.snippet │ │ ├── mauiBlazor.snippet │ │ ├── panGestureRecognizer.snippet │ │ ├── pinchGestureRecognizer.snippet │ │ ├── pointerGestureRecognizer.snippet │ │ ├── resources.snippet │ │ ├── stackLayout.snippet │ │ ├── style.snippet │ │ ├── swipeGestureRecognizer.snippet │ │ ├── syncfusionToolkit.snippet │ │ ├── tapGestureRecognizer.snippet │ │ ├── verticalStack.snippet │ │ └── wpfBlazor.snippet │ ├── MauiTemplates.csproj │ ├── MauiXamlSnippets.pkgdef │ ├── Models │ ├── ITitle.cs │ └── Option.cs │ ├── NuGetTemplates.pkgdef │ ├── ObservableObject.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ └── Icon.png │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── GenericItemViewModel.cs │ └── PageViewModel.cs │ ├── Views │ ├── GenericItemDialog.xaml │ └── GenericItemDialog.xaml.cs │ ├── license.txt │ ├── readme.docx │ ├── readme.pdf │ ├── readme.rtf │ ├── release-notes.txt │ ├── source.extension.cs │ └── source.extension.vsixmanifest ├── ItemTemplates ├── CometPageCS │ ├── CometPageCS.cs │ ├── CometPageCS.vstemplate │ └── __TemplateIcon.ico ├── MauiBlazorWebView │ ├── MauiBlazorWebView.vstemplate │ ├── MauiBlazorWebView.xaml │ ├── MauiBlazorWebView.xaml.cs │ └── __TemplateIcon.ico ├── MauiBlazorWebViewCS │ ├── MauiBlazorWebView.cs │ ├── MauiBlazorWebViewCS.vstemplate │ └── __TemplateIcon.ico ├── MauiHandler │ ├── Controls │ │ ├── CustomView.cs │ │ └── ICustomView.cs │ ├── Handlers │ │ ├── CustomViewHandler.Android.cs │ │ ├── CustomViewHandler.Standard.cs │ │ ├── CustomViewHandler.Tizen.cs │ │ ├── CustomViewHandler.Windows.cs │ │ ├── CustomViewHandler.cs │ │ ├── CustomViewHandler.iOS.cs │ │ └── ICustomViewHandler.cs │ ├── MauiHandler.vstemplate │ └── __TemplateIcon.ico ├── MauiHandlerReg │ ├── Controls │ │ ├── CustomView.cs │ │ └── ICustomView.cs │ ├── Handlers │ │ ├── CustomViewHandler.cs │ │ └── ICustomViewHandler.cs │ ├── MauiHandlerReg.vstemplate │ ├── Platforms │ │ ├── Android │ │ │ └── CustomViewHandler.cs │ │ ├── MacCatalyst │ │ │ └── CustomViewHandler.cs │ │ ├── Tizen │ │ │ └── CustomViewHandler.cs │ │ ├── Windows │ │ │ └── CustomViewHandler.cs │ │ └── iOS │ │ │ └── CustomViewHandler.cs │ └── __TemplateIcon.ico ├── MauiItem │ ├── MauiItem.vstemplate │ ├── MauiItem.xaml │ ├── MauiItem.xaml.cs │ └── __TemplateIcon.ico ├── MauiItemCS │ ├── MauiItemCS.cs │ ├── MauiItemCS.vstemplate │ └── __TemplateIcon.ico ├── MauiPage │ ├── MauiPage.vstemplate │ ├── MauiPage.xaml │ ├── MauiPage.xaml.cs │ └── __TemplateIcon.ico ├── MauiPageCS │ ├── MauiPageCS.cs │ ├── MauiPageCS.vstemplate │ └── __TemplateIcon.ico ├── MauiPageCSWithViewModel │ ├── MauiPageCSWithViewModel.vstemplate │ ├── ViewModels │ │ └── MauiViewModel.cs │ ├── Views │ │ └── MauiPageCS.cs │ └── __TemplateIcon.ico ├── MauiPageRazor │ ├── MauiPage.razor │ ├── MauiPageRazor.vstemplate │ └── __TemplateIcon.ico ├── MauiPageWithViewModel │ ├── MauiPageWithViewModel.vstemplate │ ├── ViewModels │ │ └── MauiViewModel.cs │ ├── Views │ │ ├── MauiPage.xaml │ │ └── MauiPage.xaml.cs │ └── __TemplateIcon.ico ├── MauiRenderer │ ├── Controls │ │ ├── CustomView.cs │ │ └── ICustomView.cs │ ├── MauiRenderer.vstemplate │ ├── Renderers │ │ ├── CustomViewRenderer.Android.cs │ │ ├── CustomViewRenderer.MacCatalyst.cs │ │ ├── CustomViewRenderer.Windows.cs │ │ └── CustomViewRenderer.iOS.cs │ └── __TemplateIcon.ico ├── MauiRendererReg │ ├── Controls │ │ ├── CustomView.cs │ │ └── ICustomView.cs │ ├── MauiRendererReg.vstemplate │ ├── Platforms │ │ ├── Android │ │ │ └── CustomViewRenderer.cs │ │ ├── MacCatalyst │ │ │ └── CustomViewRenderer.cs │ │ ├── Windows │ │ │ └── CustomViewRenderer.cs │ │ └── iOS │ │ │ └── CustomViewRenderer.cs │ └── __TemplateIcon.ico ├── MauiResDict │ ├── MauiResDict.vstemplate │ ├── MauiResDict.xaml │ ├── MauiResDict.xaml.cs │ └── __TemplateIcon.ico ├── MauiResDictXaml │ ├── MauiResDictXaml.vstemplate │ ├── MauiResDictXaml.xaml │ └── __TemplateIcon.ico ├── MauiShell │ ├── MauiShell.vstemplate │ ├── MauiShell.xaml │ ├── MauiShell.xaml.cs │ └── __TemplateIcon.ico ├── MauiShellCS │ ├── MauiShell.cs │ ├── MauiShellCS.vstemplate │ └── __TemplateIcon.ico ├── MauiShellRazor │ ├── MauiShell.razor │ ├── MauiShellRazor.vstemplate │ └── __TemplateIcon.ico ├── MauiView │ ├── MauiView.vstemplate │ ├── MauiView.xaml │ ├── MauiView.xaml.cs │ └── __TemplateIcon.ico ├── MauiViewCS │ ├── MauiViewCS.cs │ ├── MauiViewCS.vstemplate │ └── __TemplateIcon.ico ├── MauiViewRazor │ ├── MauiView.razor │ ├── MauiViewRazor.vstemplate │ └── __TemplateIcon.ico └── PartialClass │ ├── MyClass.cs │ ├── MyClass.vstemplate │ └── __TemplateIcon.ico ├── MauiTemplatesCLI ├── Create-Debug-Template.bat ├── Create-Release-Template.bat ├── Create-Template.bat ├── FileApp │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── FileApp.1.cs ├── Install-Debug-Template.bat ├── Install-Release-Template.bat ├── Install-Template.bat ├── MauiAppCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ ├── ide │ │ │ └── icon.png │ │ └── template.json │ ├── App.markup.cs │ ├── App.razor.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.razor │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Controls │ │ ├── DateTimePicker.xaml │ │ └── DateTimePicker.xaml.cs │ ├── Converters │ │ └── HybridWebViewRawMessageReceivedEventArgs.cs │ ├── Data │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastService.cs │ ├── Directory.Packages.props │ ├── Exceptions │ │ ├── RouteNotFoundException.cs │ │ └── TypeNotRegisteredException.cs │ ├── Helpers │ │ ├── ResourceHelper.markup.cs │ │ └── VisualStateHelper.markup.cs │ ├── Imports.cs │ ├── Main.razor │ ├── MainWindow.markup.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MauiApp.1.Aspire │ │ ├── Aspire.cs │ │ ├── MauiApp.1.Aspire.csproj │ │ └── Properties │ │ │ └── settings.json │ ├── MauiApp.1.MauiLib │ │ └── MauiApp.1.MauiLib.csproj │ ├── MauiApp.1.RazorLib │ │ ├── MauiApp.1.RazorLib.csproj │ │ └── _Imports.razor │ ├── MauiApp.1.Shared │ │ ├── GenericExtensions.cs │ │ ├── MauiApp.1.Shared.csproj │ │ └── MauiExtensions.cs │ ├── MauiApp.1.code-workspace │ ├── MauiApp.1.csproj │ ├── MauiApp.1.sln │ ├── MauiApp.1.xml │ ├── MauiApp.1 │ │ ├── Extensions │ │ │ └── AppBuilderExtensions.cs │ │ └── _Imports.razor │ ├── MauiProgram.cs │ ├── Models │ │ └── Event.cs │ ├── NuGet.xml │ ├── Pages │ │ ├── Counter.razor │ │ ├── Home.razor │ │ └── Weather.razor │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppColors.cs │ │ ├── AppStyles.cs │ │ ├── AppStyles.xaml │ │ ├── Colors.xaml │ │ ├── Fonts │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-SemiBold.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ │ ├── AboutAssets.txt │ │ │ └── hybridroot │ │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ └── bootstrap │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── index.html │ │ │ │ └── scripts │ │ │ │ └── hwv.js │ │ ├── Styles.xaml │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Services │ │ ├── AppService.cs │ │ ├── DialogService.cs │ │ ├── IDialogService.cs │ │ ├── INavigationService.cs │ │ └── NavigationService.cs │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ ├── ViewModels │ │ ├── AppViewModel.cs │ │ ├── BaseViewModel.cs │ │ ├── EventsViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── NewEventViewModel.cs │ │ ├── SearchViewModel.cs │ │ └── SettingsViewModel.cs │ ├── Views │ │ ├── EventsPage.xaml │ │ ├── EventsPage.xaml.cs │ │ ├── LoginPage.xaml │ │ ├── LoginPage.xaml.cs │ │ ├── MainPage.markup.cs │ │ ├── MainPage.razor │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NewEventPage.xaml │ │ ├── NewEventPage.xaml.cs │ │ ├── SearchPage.xaml │ │ ├── SearchPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── VersionTemplate.markup.cs │ │ ├── VersionTemplate.xaml │ │ └── VersionTemplate.xaml.cs │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ └── index.html ├── MauiAppFS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ ├── ide │ │ │ └── icon.png │ │ └── template.json │ ├── App.fs │ ├── AppBuilderExtensions.fs │ ├── BlazorWebView.fs │ ├── Directory.Packages.props │ ├── MauiApp.1.RazorLib │ │ ├── Data │ │ │ ├── WeatherForecast.cs │ │ │ └── WeatherForecastService.cs │ │ ├── Main.razor │ │ ├── MauiApp.1.RazorLib.csproj │ │ ├── Pages │ │ │ ├── Counter.razor │ │ │ ├── Home.razor │ │ │ └── Weather.razor │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ ├── NavMenu.razor.css │ │ │ └── SurveyPrompt.razor │ │ └── _Imports.razor │ ├── MauiApp.1.code-workspace │ ├── MauiApp.1.fsproj │ ├── MauiApp.1.sln │ ├── MauiApp.1.xml │ ├── MauiProgram.fs │ ├── NuGet.xml │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.fs │ │ │ ├── MainApplication.fs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.fs │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── Program.fs │ │ ├── Tizen │ │ │ ├── Main.fs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.fs │ │ │ ├── Main.fs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.fs │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── Program.fs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-Semibold.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ └── Splash │ │ │ └── splash.svg │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ └── index.html ├── MauiBlazorWebView │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiBlazorWebView.1Page.xaml │ └── MauiBlazorWebView.1Page.xaml.cs ├── MauiBlazorWebViewCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiBlazorWebView.1Page.cs ├── MauiClassLib │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ ├── ide │ │ │ └── icon.png │ │ └── template.json │ ├── Class1.cs │ ├── Directory.Packages.props │ ├── Imports.cs │ ├── MauiClassLib.1.code-workspace │ ├── MauiClassLib.1.csproj │ ├── MauiClassLib.1.sln │ ├── MauiClassLib.1.xml │ ├── NuGet.xml │ └── Platforms │ │ ├── Android │ │ ├── Class1.cs │ │ └── PlatformClass1.cs │ │ ├── MacCatalyst │ │ ├── Class1.cs │ │ └── PlatformClass1.cs │ │ ├── Tizen │ │ ├── Class1.cs │ │ └── PlatformClass1.cs │ │ ├── Windows │ │ ├── Class1.cs │ │ └── PlatformClass1.cs │ │ └── iOS │ │ ├── Class1.cs │ │ └── PlatformClass1.cs ├── MauiItem │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiItem.1.xaml │ └── MauiItem.1.xaml.cs ├── MauiItemCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiItem.1.cs ├── MauiMvvm │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── Maui.1Page.xaml │ ├── Maui.1Page.xaml.cs │ └── Maui.1ViewModel.cs ├── MauiMvvmCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── Maui.1Page.cs │ └── Maui.1ViewModel.cs ├── MauiPage │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiPage.1Page.xaml │ └── MauiPage.1Page.xaml.cs ├── MauiPageCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiPage.1Page.cs ├── MauiPageRazor │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiPage.1Page.razor ├── MauiResDict │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiResDict.1.xaml │ └── MauiResDict.1.xaml.cs ├── MauiShell │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiShell.1Shell.xaml │ └── MauiShell.1Shell.xaml.cs ├── MauiShellCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiShell.1Shell.cs ├── MauiShellRazor │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiShell.1Shell.razor ├── MauiView │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ ├── MauiView.1View.xaml │ └── MauiView.1View.xaml.cs ├── MauiViewCS │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiView.1View.cs ├── MauiViewRazor │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MauiView.1View.razor ├── MyClass │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── MyClass.1.cs ├── PackageName.txt ├── PackageVersion.txt ├── SharedClassLib │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ ├── ide │ │ │ └── icon.png │ │ └── template.json │ ├── AssemblyInfo.shared.cs │ ├── Directory.Packages.props │ ├── Imports.forms.cs │ ├── Imports.maui.cs │ ├── Imports.shared.cs │ ├── NuGet.xml │ ├── SharedClassLib.1.code-workspace │ ├── SharedClassLib.1.csproj │ ├── SharedClassLib.1.sln │ └── SharedClassLib.1.xml ├── Slnx │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ ├── ide.host.json │ │ └── template.json │ └── Slnx.1.slnx ├── Uninstall-Template.bat ├── VijayAnand.MauiTemplates.csproj ├── VijayAnand.MauiTemplates.slnx ├── icon.png ├── overview.md └── release-notes.txt ├── ProjectTemplates ├── MauiApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiApp.csproj │ ├── MauiApp.vstemplate │ ├── MauiProgram.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── Fonts │ │ │ └── OpenSans-Regular.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── appicon.svg │ │ └── appiconfg.svg │ └── __TemplateIcon.ico ├── MauiAppCS │ ├── App.cs │ ├── Icon.png │ ├── Imports.cs │ ├── MainPage.cs │ ├── MauiAppCS.code-workspace │ ├── MauiAppCS.csproj │ ├── MauiAppCS.vstemplate │ ├── MauiProgram.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 │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── Colors.xaml │ │ ├── Colors.xaml.cs │ │ ├── Fonts │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-SemiBold.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ ├── Styles.xaml │ │ ├── Styles.xaml.cs │ │ ├── appicon.svg │ │ ├── appiconfg.svg │ │ └── splash.svg │ └── __TemplateIcon.ico ├── MauiBlazorApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Data │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastService.cs │ ├── Main.razor │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiBlazorApp.csproj │ ├── MauiBlazorApp.vstemplate │ ├── MauiProgram.cs │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ └── Index.razor │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── Fonts │ │ │ └── OpenSans-Regular.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── NavMenu.razor │ │ └── SurveyPrompt.razor │ ├── _Imports.razor │ ├── __TemplateIcon.ico │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ └── index.html └── MauiClassLib │ ├── Class1.cs │ ├── MauiClassLib.csproj │ ├── MauiClassLib.vstemplate │ └── __TemplateIcon.ico └── Scripts ├── class-cs.bat ├── class-cs.ps1 ├── maui-bwv-cs.bat ├── maui-bwv-cs.ps1 ├── maui-bwv.bat ├── maui-bwv.ps1 ├── maui-item-cs.bat ├── maui-item-cs.ps1 ├── maui-item.bat ├── maui-item.ps1 ├── maui-mvvm-cs.bat ├── maui-mvvm-cs.ps1 ├── maui-mvvm.bat ├── maui-mvvm.ps1 ├── maui-page-cs.bat ├── maui-page-cs.ps1 ├── maui-page.bat ├── maui-page.ps1 ├── maui-resdict.bat ├── maui-resdict.ps1 ├── maui-shell-cs.bat ├── maui-shell-cs.ps1 ├── maui-shell.bat ├── maui-shell.ps1 ├── maui-view-cs.bat ├── maui-view-cs.ps1 ├── maui-view.bat └── maui-view.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Artifacts/Batch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/Artifacts/Batch.zip -------------------------------------------------------------------------------- /Artifacts/PowerShell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/Artifacts/PowerShell.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/global.json -------------------------------------------------------------------------------- /images/add-new-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/add-new-item.png -------------------------------------------------------------------------------- /images/dotnetmaui-all-in-one-app-project-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/dotnetmaui-all-in-one-app-project-options.png -------------------------------------------------------------------------------- /images/dotnetmaui-all-in-one-project-template-pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/dotnetmaui-all-in-one-project-template-pinned.png -------------------------------------------------------------------------------- /images/dotnetmaui-class-library-project-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/dotnetmaui-class-library-project-options.png -------------------------------------------------------------------------------- /images/dotnetmaui-generic-item-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/dotnetmaui-generic-item-popup.png -------------------------------------------------------------------------------- /images/maui-project-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/maui-project-templates.png -------------------------------------------------------------------------------- /images/shared-class-library-project-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/shared-class-library-project-options.png -------------------------------------------------------------------------------- /images/vs-manage-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/images/vs-manage-extensions.png -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates.sln -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/CodeSnippets/stack.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/CodeSnippets/stack.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/CodeSnippets/verticalStack.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/CodeSnippets/verticalStack.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiPageCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiPageCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiPageXaml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiPageXaml.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiResDict.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiResDict.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiShell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiShell.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiViewCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiViewCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiViewXaml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ItemTemplates/MauiViewXaml.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/MauiItemTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/MauiItemTemplates.csproj -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/ProjectTemplates/MauiClassLib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/ProjectTemplates/MauiClassLib.zip -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/license.txt -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/readme.rtf -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/release-notes.txt -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/source.extension.cs -------------------------------------------------------------------------------- /src/Extensions/MauiItemTemplates/MauiItemTemplates/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiItemTemplates/MauiItemTemplates/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates.sln -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Assets/VijayAnand.MauiTemplates.8.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Assets/VijayAnand.MauiTemplates.8.0.0.nupkg -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Command.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/CommandOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/CommandOfT.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/CustomActionWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/CustomActionWizard.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/CometPageCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/CometPageCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiBlazorWebView.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiBlazorWebView.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiBlazorWebViewCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiBlazorWebViewCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiHandler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiHandler.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiHandlerReg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiHandlerReg.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiItem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiItem.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiItemCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiItemCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPage.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageCSWithViewModel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageCSWithViewModel.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageRazor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageRazor.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageWithViewModel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiPageWithViewModel.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiRenderer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiRenderer.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiRendererReg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiRendererReg.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiResDict.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiResDict.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiResDictXaml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiResDictXaml.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShell.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShellCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShellCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShellRazor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiShellRazor.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiView.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiView.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiViewCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiViewCS.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiViewRazor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/MauiViewRazor.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/PartialClass.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ItemTemplates/PartialClass.zip -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiCSharpSnippets.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiCSharpSnippets.pkgdef -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/asyncMethod.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/asyncMethod.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/cometProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/cometProperty.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/crossPlatform.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/crossPlatform.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/eventHandler.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/eventHandler.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/method.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/method.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/record.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/record.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/recordStruct.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/recordStruct.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/relayCommand.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/CSharp/relayCommand.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/blazorWebView.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/blazorWebView.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/color.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/color.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/flexLayout.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/flexLayout.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/gridLayout.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/gridLayout.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/horizontalStack.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/horizontalStack.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/mauiBlazor.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/mauiBlazor.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/resources.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/resources.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/stackLayout.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/stackLayout.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/style.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/style.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/syncfusionToolkit.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/syncfusionToolkit.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/verticalStack.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/verticalStack.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/wpfBlazor.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiSnippets/Xaml/wpfBlazor.snippet -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiTemplates.csproj -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/MauiXamlSnippets.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/MauiXamlSnippets.pkgdef -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Models/ITitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Models/ITitle.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Models/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Models/Option.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/NuGetTemplates.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/NuGetTemplates.pkgdef -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ObservableObject.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ViewModels/GenericItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ViewModels/GenericItemViewModel.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/ViewModels/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/ViewModels/PageViewModel.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Views/GenericItemDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Views/GenericItemDialog.xaml -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/Views/GenericItemDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/Views/GenericItemDialog.xaml.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/license.txt -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/readme.docx -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/readme.pdf -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/readme.rtf -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/release-notes.txt -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/source.extension.cs -------------------------------------------------------------------------------- /src/Extensions/MauiTemplates/MauiTemplates/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Extensions/MauiTemplates/MauiTemplates/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/ItemTemplates/CometPageCS/CometPageCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/CometPageCS/CometPageCS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/CometPageCS/CometPageCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/CometPageCS/CometPageCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/CometPageCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/CometPageCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebView/MauiBlazorWebView.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebView/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebView/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebViewCS/MauiBlazorWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebViewCS/MauiBlazorWebView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebViewCS/MauiBlazorWebViewCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebViewCS/MauiBlazorWebViewCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiBlazorWebViewCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiBlazorWebViewCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Controls/CustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Controls/CustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Controls/ICustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Controls/ICustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Android.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Standard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Standard.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Tizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Tizen.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.Windows.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/CustomViewHandler.iOS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/Handlers/ICustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/Handlers/ICustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/MauiHandler.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/MauiHandler.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandler/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandler/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Controls/CustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Controls/CustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Controls/ICustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Controls/ICustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Handlers/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Handlers/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Handlers/ICustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Handlers/ICustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/MauiHandlerReg.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/MauiHandlerReg.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Platforms/Android/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Platforms/Android/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Platforms/MacCatalyst/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Platforms/MacCatalyst/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Platforms/Tizen/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Platforms/Tizen/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Platforms/Windows/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Platforms/Windows/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/Platforms/iOS/CustomViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/Platforms/iOS/CustomViewHandler.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiHandlerReg/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiHandlerReg/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItem/MauiItem.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItem/MauiItem.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItem/MauiItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItem/MauiItem.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItem/MauiItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItem/MauiItem.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItem/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItem/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItemCS/MauiItemCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItemCS/MauiItemCS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItemCS/MauiItemCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItemCS/MauiItemCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiItemCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiItemCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPage/MauiPage.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPage/MauiPage.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPage/MauiPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPage/MauiPage.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPage/MauiPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPage/MauiPage.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPage/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPage/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCS/MauiPageCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCS/MauiPageCS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCS/MauiPageCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCS/MauiPageCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCSWithViewModel/MauiPageCSWithViewModel.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCSWithViewModel/MauiPageCSWithViewModel.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCSWithViewModel/ViewModels/MauiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCSWithViewModel/ViewModels/MauiViewModel.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCSWithViewModel/Views/MauiPageCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCSWithViewModel/Views/MauiPageCS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageCSWithViewModel/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageCSWithViewModel/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageRazor/MauiPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageRazor/MauiPage.razor -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageRazor/MauiPageRazor.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageRazor/MauiPageRazor.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageRazor/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageRazor/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageWithViewModel/MauiPageWithViewModel.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageWithViewModel/MauiPageWithViewModel.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageWithViewModel/ViewModels/MauiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageWithViewModel/ViewModels/MauiViewModel.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageWithViewModel/Views/MauiPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageWithViewModel/Views/MauiPage.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageWithViewModel/Views/MauiPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageWithViewModel/Views/MauiPage.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiPageWithViewModel/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiPageWithViewModel/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Controls/CustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Controls/CustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Controls/ICustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Controls/ICustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/MauiRenderer.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/MauiRenderer.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.Android.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.MacCatalyst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.MacCatalyst.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.Windows.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/Renderers/CustomViewRenderer.iOS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRenderer/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRenderer/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Controls/CustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Controls/CustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Controls/ICustomView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Controls/ICustomView.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/MauiRendererReg.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/MauiRendererReg.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Platforms/Android/CustomViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Platforms/Android/CustomViewRenderer.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Platforms/MacCatalyst/CustomViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Platforms/MacCatalyst/CustomViewRenderer.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Platforms/Windows/CustomViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Platforms/Windows/CustomViewRenderer.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/Platforms/iOS/CustomViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/Platforms/iOS/CustomViewRenderer.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiRendererReg/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiRendererReg/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDict/MauiResDict.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDict/MauiResDict.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDict/MauiResDict.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDict/MauiResDict.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDict/MauiResDict.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDict/MauiResDict.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDict/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDict/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDictXaml/MauiResDictXaml.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDictXaml/MauiResDictXaml.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDictXaml/MauiResDictXaml.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDictXaml/MauiResDictXaml.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiResDictXaml/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiResDictXaml/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShell/MauiShell.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShell/MauiShell.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShell/MauiShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShell/MauiShell.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShell/MauiShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShell/MauiShell.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShell/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShell/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellCS/MauiShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellCS/MauiShell.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellCS/MauiShellCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellCS/MauiShellCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellRazor/MauiShell.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellRazor/MauiShell.razor -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellRazor/MauiShellRazor.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellRazor/MauiShellRazor.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiShellRazor/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiShellRazor/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiView/MauiView.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiView/MauiView.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiView/MauiView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiView/MauiView.xaml -------------------------------------------------------------------------------- /src/ItemTemplates/MauiView/MauiView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiView/MauiView.xaml.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiView/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiView/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewCS/MauiViewCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewCS/MauiViewCS.cs -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewCS/MauiViewCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewCS/MauiViewCS.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewRazor/MauiView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewRazor/MauiView.razor -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewRazor/MauiViewRazor.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewRazor/MauiViewRazor.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/MauiViewRazor/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/MauiViewRazor/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ItemTemplates/PartialClass/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/PartialClass/MyClass.cs -------------------------------------------------------------------------------- /src/ItemTemplates/PartialClass/MyClass.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/PartialClass/MyClass.vstemplate -------------------------------------------------------------------------------- /src/ItemTemplates/PartialClass/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ItemTemplates/PartialClass/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Create-Debug-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Create-Debug-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Create-Release-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Create-Release-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Create-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Create-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/FileApp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/FileApp/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/FileApp/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/FileApp/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/FileApp/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/FileApp/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/FileApp/FileApp.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/FileApp/FileApp.1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Install-Debug-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Install-Debug-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Install-Release-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Install-Release-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Install-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Install-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/.template.config/ide/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/.template.config/ide/icon.png -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/App.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/App.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/App.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/App.razor.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/App.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/App.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/AppShell.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/AppShell.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/AppShell.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Controls/DateTimePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Controls/DateTimePicker.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Controls/DateTimePicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Controls/DateTimePicker.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Converters/HybridWebViewRawMessageReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Converters/HybridWebViewRawMessageReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Directory.Packages.props -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Exceptions/RouteNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Exceptions/RouteNotFoundException.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Exceptions/TypeNotRegisteredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Exceptions/TypeNotRegisteredException.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Helpers/ResourceHelper.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Helpers/ResourceHelper.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Helpers/VisualStateHelper.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Helpers/VisualStateHelper.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Imports.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Main.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MainWindow.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MainWindow.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MainWindow.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/Aspire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/Aspire.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/MauiApp.1.Aspire.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/MauiApp.1.Aspire.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/Properties/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Aspire/Properties/settings.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.MauiLib/MauiApp.1.MauiLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.MauiLib/MauiApp.1.MauiLib.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.RazorLib/MauiApp.1.RazorLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.RazorLib/MauiApp.1.RazorLib.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.RazorLib/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.RazorLib/_Imports.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/GenericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/GenericExtensions.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/MauiApp.1.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/MauiApp.1.Shared.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/MauiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.Shared/MauiExtensions.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.code-workspace -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.sln -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1/Extensions/AppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1/Extensions/AppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiApp.1/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiApp.1/_Imports.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/MauiProgram.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Models/Event.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/NuGet.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Pages/Counter.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Pages/Home.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Pages/Weather.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/AppColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/AppColors.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/AppStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/AppStyles.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/AppStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/AppStyles.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Colors.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/css/app.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/index.html -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/scripts/hwv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Raw/hybridroot/scripts/hwv.js -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/Styles.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/appicon.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Services/AppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Services/AppService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Services/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Services/DialogService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Services/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Services/IDialogService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Services/INavigationService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/AppViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/EventsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/EventsViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/NewEventViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/NewEventViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/SearchViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/EventsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/EventsPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/EventsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/EventsPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/LoginPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/LoginPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/NewEventPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/NewEventPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/NewEventPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/NewEventPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/SearchPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/SearchPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.markup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.markup.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/Views/VersionTemplate.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/css/all.min.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppCS/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppCS/wwwroot/index.html -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/.template.config/ide/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/.template.config/ide/icon.png -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/App.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/App.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/AppBuilderExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/AppBuilderExtensions.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/BlazorWebView.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/BlazorWebView.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Directory.Packages.props -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Main.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/MauiApp.1.RazorLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/MauiApp.1.RazorLib.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Counter.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Home.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Pages/Weather.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.RazorLib/_Imports.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.code-workspace -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.fsproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.sln -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiApp.1.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/MauiProgram.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/MauiProgram.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/NuGet.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/MainActivity.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/MainActivity.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/MainApplication.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/MainApplication.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/AppDelegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/AppDelegate.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/MacCatalyst/Program.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Tizen/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Tizen/Main.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/App.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/App.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/Main.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/AppDelegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/AppDelegate.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Platforms/iOS/Program.fs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/css/all.min.css -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiAppFS/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiAppFS/wwwroot/index.html -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebView/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebView/MauiBlazorWebView.1Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebView/MauiBlazorWebView.1Page.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebView/MauiBlazorWebView.1Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebView/MauiBlazorWebView.1Page.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebViewCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiBlazorWebViewCS/MauiBlazorWebView.1Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiBlazorWebViewCS/MauiBlazorWebView.1Page.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/.template.config/ide/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/.template.config/ide/icon.png -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Directory.Packages.props -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Imports.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.code-workspace -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.sln -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/MauiClassLib.1.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/NuGet.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Android/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Android/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Android/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Android/PlatformClass1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/MacCatalyst/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/MacCatalyst/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/MacCatalyst/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/MacCatalyst/PlatformClass1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Tizen/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Tizen/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Tizen/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Tizen/PlatformClass1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Windows/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Windows/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/Windows/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/Windows/PlatformClass1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/iOS/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/iOS/Class1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiClassLib/Platforms/iOS/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiClassLib/Platforms/iOS/PlatformClass1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItem/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItem/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItem/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItem/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItem/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItem/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItem/MauiItem.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItem/MauiItem.1.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItem/MauiItem.1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItem/MauiItem.1.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItemCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItemCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItemCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItemCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItemCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItemCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiItemCS/MauiItem.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiItemCS/MauiItem.1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/Maui.1Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/Maui.1Page.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/Maui.1Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/Maui.1Page.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvm/Maui.1ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvm/Maui.1ViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvmCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvmCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvmCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvmCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvmCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvmCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvmCS/Maui.1Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvmCS/Maui.1Page.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiMvvmCS/Maui.1ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiMvvmCS/Maui.1ViewModel.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPage/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPage/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPage/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPage/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPage/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPage/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPage/MauiPage.1Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPage/MauiPage.1Page.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPage/MauiPage.1Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPage/MauiPage.1Page.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageCS/MauiPage.1Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageCS/MauiPage.1Page.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageRazor/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageRazor/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageRazor/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageRazor/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageRazor/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageRazor/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiPageRazor/MauiPage.1Page.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiPageRazor/MauiPage.1Page.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiResDict/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiResDict/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiResDict/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiResDict/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiResDict/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiResDict/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiResDict/MauiResDict.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiResDict/MauiResDict.1.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiResDict/MauiResDict.1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiResDict/MauiResDict.1.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShell/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShell/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShell/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShell/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShell/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShell/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShell/MauiShell.1Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShell/MauiShell.1Shell.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShell/MauiShell.1Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShell/MauiShell.1Shell.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellCS/MauiShell.1Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellCS/MauiShell.1Shell.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellRazor/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellRazor/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellRazor/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellRazor/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellRazor/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellRazor/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiShellRazor/MauiShell.1Shell.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiShellRazor/MauiShell.1Shell.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiView/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiView/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiView/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiView/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiView/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiView/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiView/MauiView.1View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiView/MauiView.1View.xaml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiView/MauiView.1View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiView/MauiView.1View.xaml.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewCS/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewCS/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewCS/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewCS/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewCS/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewCS/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewCS/MauiView.1View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewCS/MauiView.1View.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewRazor/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewRazor/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewRazor/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewRazor/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewRazor/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewRazor/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MauiViewRazor/MauiView.1View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MauiViewRazor/MauiView.1View.razor -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MyClass/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MyClass/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MyClass/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MyClass/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MyClass/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MyClass/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/MyClass/MyClass.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/MyClass/MyClass.1.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/PackageName.txt: -------------------------------------------------------------------------------- 1 | VijayAnand.MauiTemplates 2 | -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/PackageVersion.txt: -------------------------------------------------------------------------------- 1 | 8.0.0 2 | -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/.template.config/ide/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/.template.config/ide/icon.png -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/AssemblyInfo.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/AssemblyInfo.shared.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/Directory.Packages.props -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/Imports.forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/Imports.forms.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/Imports.maui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/Imports.maui.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/Imports.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/Imports.shared.cs -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/NuGet.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.code-workspace -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.sln -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/SharedClassLib/SharedClassLib.1.xml -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Slnx/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Slnx/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Slnx/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Slnx/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Slnx/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Slnx/.template.config/template.json -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Slnx/Slnx.1.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Slnx/Slnx.1.slnx -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/Uninstall-Template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/Uninstall-Template.bat -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/VijayAnand.MauiTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/VijayAnand.MauiTemplates.csproj -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/VijayAnand.MauiTemplates.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/VijayAnand.MauiTemplates.slnx -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/icon.png -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/overview.md -------------------------------------------------------------------------------- /src/MauiTemplatesCLI/release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/MauiTemplatesCLI/release-notes.txt -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/App.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/MainPage.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/MauiApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/MauiApp.csproj -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/MauiApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/MauiApp.vstemplate -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/MauiProgram.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Resources/appicon.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiApp/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiApp/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/App.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Icon.png -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Imports.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/MainPage.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/MauiAppCS.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/MauiAppCS.code-workspace -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/MauiAppCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/MauiAppCS.csproj -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/MauiAppCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/MauiAppCS.vstemplate -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/MauiProgram.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Colors.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Colors.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Colors.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Styles.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/Styles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/Styles.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/appicon.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/Resources/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/Resources/splash.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiAppCS/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiAppCS/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/App.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Main.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/MainPage.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/MauiBlazorApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/MauiBlazorApp.csproj -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/MauiBlazorApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/MauiBlazorApp.vstemplate -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/MauiProgram.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Pages/Counter.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Pages/FetchData.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Pages/Index.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Resources/appicon.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/_Imports.razor -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiBlazorApp/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiBlazorApp/wwwroot/index.html -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiClassLib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiClassLib/Class1.cs -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiClassLib/MauiClassLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiClassLib/MauiClassLib.csproj -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiClassLib/MauiClassLib.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiClassLib/MauiClassLib.vstemplate -------------------------------------------------------------------------------- /src/ProjectTemplates/MauiClassLib/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/ProjectTemplates/MauiClassLib/__TemplateIcon.ico -------------------------------------------------------------------------------- /src/Scripts/class-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/class-cs.bat -------------------------------------------------------------------------------- /src/Scripts/class-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/class-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-bwv-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-bwv-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-bwv-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-bwv-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-bwv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-bwv.bat -------------------------------------------------------------------------------- /src/Scripts/maui-bwv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-bwv.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-item-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-item-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-item-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-item-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-item.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-item.bat -------------------------------------------------------------------------------- /src/Scripts/maui-item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-item.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-mvvm-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-mvvm-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-mvvm-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-mvvm-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-mvvm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-mvvm.bat -------------------------------------------------------------------------------- /src/Scripts/maui-mvvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-mvvm.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-page-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-page-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-page-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-page-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-page.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-page.bat -------------------------------------------------------------------------------- /src/Scripts/maui-page.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-page.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-resdict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-resdict.bat -------------------------------------------------------------------------------- /src/Scripts/maui-resdict.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-resdict.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-shell-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-shell-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-shell-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-shell-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-shell.bat -------------------------------------------------------------------------------- /src/Scripts/maui-shell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-shell.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-view-cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-view-cs.bat -------------------------------------------------------------------------------- /src/Scripts/maui-view-cs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-view-cs.ps1 -------------------------------------------------------------------------------- /src/Scripts/maui-view.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-view.bat -------------------------------------------------------------------------------- /src/Scripts/maui-view.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egvijayanand/dotnet-maui-templates/HEAD/src/Scripts/maui-view.ps1 --------------------------------------------------------------------------------