diff --git a/DelSolClockAppMaui/.gitignore b/DelSolClockAppMaui/.gitignore new file mode 100644 index 0000000..7f7c0e8 --- /dev/null +++ b/DelSolClockAppMaui/.gitignore @@ -0,0 +1,55 @@ +## Build results +bin/ +obj/ +[Bb]uild/ +[Ll]og/ + +# User-specific files +*.user +*.userosscache +*.suo +*.sdf +*.cache +*.csproj.user + +# Visual Studio Code +.vscode/ +.history/ + +# Xamarin/MAUI specific +*.apk +*.ap_ +*.aab +*.ipa +*.app +*.xcuserstate +*.xcodeproj/* +*.xcworkspace/* +*.DS_Store + +# macOS artifacts +*.DS_Store + +# Rider +.idea/ + +# Dotnet artifacts +project.lock.json +project.fragment.lock.json +artifacts/ + +# NuGet +*.nupkg +*.snupkg +.nuget/ +packages/ +*.nuspec +*.psmdcp + +# Logs +*.log + +# Other +*.tlog +*.vs/ +.vsconfig diff --git a/DelSolClockAppMaui/App.xaml b/DelSolClockAppMaui/App.xaml new file mode 100644 index 0000000..39de553 --- /dev/null +++ b/DelSolClockAppMaui/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/DelSolClockAppMaui/App.xaml.cs b/DelSolClockAppMaui/App.xaml.cs new file mode 100644 index 0000000..675cd42 --- /dev/null +++ b/DelSolClockAppMaui/App.xaml.cs @@ -0,0 +1,15 @@ +namespace DelSolClockAppMaui +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/DelSolClockAppMaui/AppShell.xaml b/DelSolClockAppMaui/AppShell.xaml new file mode 100644 index 0000000..5b3eb49 --- /dev/null +++ b/DelSolClockAppMaui/AppShell.xaml @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/DelSolClockAppMaui/AppShell.xaml.cs b/DelSolClockAppMaui/AppShell.xaml.cs new file mode 100644 index 0000000..c95e1e3 --- /dev/null +++ b/DelSolClockAppMaui/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace DelSolClockAppMaui +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/DelSolClockAppMaui/Components/StatusItem.xaml b/DelSolClockAppMaui/Components/StatusItem.xaml new file mode 100644 index 0000000..ea3a2b0 --- /dev/null +++ b/DelSolClockAppMaui/Components/StatusItem.xaml @@ -0,0 +1,11 @@ + + + + + diff --git a/DelSolClockAppMaui/Components/StatusItem.xaml.cs b/DelSolClockAppMaui/Components/StatusItem.xaml.cs new file mode 100644 index 0000000..4183a55 --- /dev/null +++ b/DelSolClockAppMaui/Components/StatusItem.xaml.cs @@ -0,0 +1,9 @@ +namespace DelSolClockAppMaui.Components; + +public partial class StatusItem : ContentView +{ + public StatusItem() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/DelSolClockAppMaui/Components/UpdateItem.xaml b/DelSolClockAppMaui/Components/UpdateItem.xaml new file mode 100644 index 0000000..d532198 --- /dev/null +++ b/DelSolClockAppMaui/Components/UpdateItem.xaml @@ -0,0 +1,11 @@ + + + + + diff --git a/DelSolClockAppMaui/Components/UpdateItem.xaml.cs b/DelSolClockAppMaui/Components/UpdateItem.xaml.cs new file mode 100644 index 0000000..76b149e --- /dev/null +++ b/DelSolClockAppMaui/Components/UpdateItem.xaml.cs @@ -0,0 +1,9 @@ +namespace DelSolClockAppMaui.Components; + +public partial class UpdateItem : ContentView +{ + public UpdateItem() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/DelSolClockAppMaui/DelSolClockAppMaui.csproj b/DelSolClockAppMaui/DelSolClockAppMaui.csproj new file mode 100644 index 0000000..d607efe --- /dev/null +++ b/DelSolClockAppMaui/DelSolClockAppMaui.csproj @@ -0,0 +1,82 @@ + + + + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 + + + + + + + Exe + DelSolClockAppMaui + true + true + enable + enable + + + DelSolClockAppMaui + + + com.companyname.delsolclockappmaui + + + 1.0 + 1 + + + None + + 15.0 + 15.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + False + android-arm;android-arm64;android-x86;android-x64 + + + + manual + iPhone Developer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MSBuild:Compile + + + + diff --git a/DelSolClockAppMaui/DelSolClockAppMaui.sln b/DelSolClockAppMaui/DelSolClockAppMaui.sln new file mode 100644 index 0000000..c2bc40e --- /dev/null +++ b/DelSolClockAppMaui/DelSolClockAppMaui.sln @@ -0,0 +1,23 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35527.113 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DelSolClockAppMaui", "DelSolClockAppMaui.csproj", "{2374AA40-700E-48AB-B564-E975A4E2C0BC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2374AA40-700E-48AB-B564-E975A4E2C0BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2374AA40-700E-48AB-B564-E975A4E2C0BC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2374AA40-700E-48AB-B564-E975A4E2C0BC}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {2374AA40-700E-48AB-B564-E975A4E2C0BC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2374AA40-700E-48AB-B564-E975A4E2C0BC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/DelSolClockAppMaui/MainPage.xaml b/DelSolClockAppMaui/MainPage.xaml new file mode 100644 index 0000000..f5511ae --- /dev/null +++ b/DelSolClockAppMaui/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +