diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage.sln b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage.sln new file mode 100644 index 00000000..67b6ff98 --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36127.28 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertExcelToImage", "ConvertExcelToImage\ConvertExcelToImage.csproj", "{E853FA99-0761-4807-B8CF-BD1B21BEBBDF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Release|Any CPU.Build.0 = Release|Any CPU + {E853FA99-0761-4807-B8CF-BD1B21BEBBDF}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2654F362-EEC3-4AC5-86DB-84DC0B03FE65} + EndGlobalSection +EndGlobal diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml new file mode 100644 index 00000000..c3eb4ddd --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml.cs b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml.cs new file mode 100644 index 00000000..5ecf41d9 --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/App.xaml.cs @@ -0,0 +1,12 @@ +namespace ConvertExcelToImage +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml new file mode 100644 index 00000000..37d07b8b --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml.cs b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml.cs new file mode 100644 index 00000000..420aa9dd --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace ConvertExcelToImage +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj new file mode 100644 index 00000000..7f53adbc --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj @@ -0,0 +1,74 @@ + + + + net8.0-android;net8.0-ios;net8.0-maccatalyst + $(TargetFrameworks);net8.0-windows10.0.19041.0 + + + + + + + Exe + ConvertExcelToImage + true + true + enable + enable + + + ConvertExcelToImage + + + com.companyname.convertexceltoimage + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj.user b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj.user new file mode 100644 index 00000000..891593c4 --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/ConvertExcelToImage.csproj.user @@ -0,0 +1,31 @@ + + + + False + net8.0-windows10.0.19041.0 + Windows Machine + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/InputTemplate.xlsx b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/InputTemplate.xlsx new file mode 100644 index 00000000..a7c5e8d7 Binary files /dev/null and b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/InputTemplate.xlsx differ diff --git a/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/MainPage.xaml b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/MainPage.xaml new file mode 100644 index 00000000..08944ee7 --- /dev/null +++ b/Getting Started/.NET MAUI/ConvertExcelToImage/ConvertExcelToImage/MainPage.xaml @@ -0,0 +1,35 @@ + + + + + + +