From 13f578641af03fb0e78c7ade636f93087be25302 Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 29 Aug 2023 17:49:44 -0700 Subject: [PATCH] Add project files. --- MAUI_Weather.sln | 27 ++ MAUI_Weather/App.xaml | 14 + MAUI_Weather/App.xaml.cs | 11 + MAUI_Weather/AppShell.xaml | 14 + MAUI_Weather/AppShell.xaml.cs | 9 + MAUI_Weather/MAUI_Weather.csproj | 61 +++ MAUI_Weather/MainPage.xaml | 41 ++ MAUI_Weather/MainPage.xaml.cs | 24 ++ MAUI_Weather/MauiProgram.cs | 24 ++ .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 10 + .../Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 9 + MAUI_Weather/Platforms/MacCatalyst/Info.plist | 30 ++ MAUI_Weather/Platforms/MacCatalyst/Program.cs | 15 + MAUI_Weather/Platforms/Tizen/Main.cs | 16 + .../Platforms/Tizen/tizen-manifest.xml | 15 + MAUI_Weather/Platforms/Windows/App.xaml | 8 + MAUI_Weather/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ MAUI_Weather/Platforms/Windows/app.manifest | 15 + MAUI_Weather/Platforms/iOS/AppDelegate.cs | 9 + MAUI_Weather/Platforms/iOS/Info.plist | 32 ++ MAUI_Weather/Platforms/iOS/Program.cs | 15 + MAUI_Weather/Properties/launchSettings.json | 8 + MAUI_Weather/Resources/AppIcon/appicon.svg | 4 + MAUI_Weather/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes MAUI_Weather/Resources/Images/dotnet_bot.svg | 93 ++++ MAUI_Weather/Resources/Raw/AboutAssets.txt | 15 + MAUI_Weather/Resources/Splash/splash.svg | 8 + MAUI_Weather/Resources/Styles/Colors.xaml | 44 ++ MAUI_Weather/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 35 files changed, 1081 insertions(+) create mode 100644 MAUI_Weather.sln create mode 100644 MAUI_Weather/App.xaml create mode 100644 MAUI_Weather/App.xaml.cs create mode 100644 MAUI_Weather/AppShell.xaml create mode 100644 MAUI_Weather/AppShell.xaml.cs create mode 100644 MAUI_Weather/MAUI_Weather.csproj create mode 100644 MAUI_Weather/MainPage.xaml create mode 100644 MAUI_Weather/MainPage.xaml.cs create mode 100644 MAUI_Weather/MauiProgram.cs create mode 100644 MAUI_Weather/Platforms/Android/AndroidManifest.xml create mode 100644 MAUI_Weather/Platforms/Android/MainActivity.cs create mode 100644 MAUI_Weather/Platforms/Android/MainApplication.cs create mode 100644 MAUI_Weather/Platforms/Android/Resources/values/colors.xml create mode 100644 MAUI_Weather/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MAUI_Weather/Platforms/MacCatalyst/Info.plist create mode 100644 MAUI_Weather/Platforms/MacCatalyst/Program.cs create mode 100644 MAUI_Weather/Platforms/Tizen/Main.cs create mode 100644 MAUI_Weather/Platforms/Tizen/tizen-manifest.xml create mode 100644 MAUI_Weather/Platforms/Windows/App.xaml create mode 100644 MAUI_Weather/Platforms/Windows/App.xaml.cs create mode 100644 MAUI_Weather/Platforms/Windows/Package.appxmanifest create mode 100644 MAUI_Weather/Platforms/Windows/app.manifest create mode 100644 MAUI_Weather/Platforms/iOS/AppDelegate.cs create mode 100644 MAUI_Weather/Platforms/iOS/Info.plist create mode 100644 MAUI_Weather/Platforms/iOS/Program.cs create mode 100644 MAUI_Weather/Properties/launchSettings.json create mode 100644 MAUI_Weather/Resources/AppIcon/appicon.svg create mode 100644 MAUI_Weather/Resources/AppIcon/appiconfg.svg create mode 100644 MAUI_Weather/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MAUI_Weather/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MAUI_Weather/Resources/Images/dotnet_bot.svg create mode 100644 MAUI_Weather/Resources/Raw/AboutAssets.txt create mode 100644 MAUI_Weather/Resources/Splash/splash.svg create mode 100644 MAUI_Weather/Resources/Styles/Colors.xaml create mode 100644 MAUI_Weather/Resources/Styles/Styles.xaml diff --git a/MAUI_Weather.sln b/MAUI_Weather.sln new file mode 100644 index 0000000..0a8a659 --- /dev/null +++ b/MAUI_Weather.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31611.283 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MAUI_Weather", "MAUI_Weather\MAUI_Weather.csproj", "{A0A50CD6-0B15-47A5-B74C-D6503F0073D7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Release|Any CPU.Build.0 = Release|Any CPU + {A0A50CD6-0B15-47A5-B74C-D6503F0073D7}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + EndGlobalSection +EndGlobal diff --git a/MAUI_Weather/App.xaml b/MAUI_Weather/App.xaml new file mode 100644 index 0000000..7d2ab70 --- /dev/null +++ b/MAUI_Weather/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MAUI_Weather/App.xaml.cs b/MAUI_Weather/App.xaml.cs new file mode 100644 index 0000000..9f17e79 --- /dev/null +++ b/MAUI_Weather/App.xaml.cs @@ -0,0 +1,11 @@ +namespace MAUI_Weather; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/MAUI_Weather/AppShell.xaml b/MAUI_Weather/AppShell.xaml new file mode 100644 index 0000000..e5b71e7 --- /dev/null +++ b/MAUI_Weather/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MAUI_Weather/AppShell.xaml.cs b/MAUI_Weather/AppShell.xaml.cs new file mode 100644 index 0000000..a605804 --- /dev/null +++ b/MAUI_Weather/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace MAUI_Weather; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/MAUI_Weather/MAUI_Weather.csproj b/MAUI_Weather/MAUI_Weather.csproj new file mode 100644 index 0000000..6d5cb9d --- /dev/null +++ b/MAUI_Weather/MAUI_Weather.csproj @@ -0,0 +1,61 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + MAUI_Weather + true + true + enable + + + MAUI_Weather + + + com.companyname.maui_weather + 2f6a2d3b-4488-4cc9-9503-6401227b0a41 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MAUI_Weather/MainPage.xaml b/MAUI_Weather/MainPage.xaml new file mode 100644 index 0000000..cc72813 --- /dev/null +++ b/MAUI_Weather/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +