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 @@ + + + + + + + + +