diff --git a/BookApp/BookApp.sln b/BookApp/BookApp.sln new file mode 100644 index 0000000..3e376e8 --- /dev/null +++ b/BookApp/BookApp.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookApp", "BookApp\BookApp.csproj", "{DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.Build.0 = Release|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {27FCF0C7-3613-4FC6-9E95-2EEFB171F0F4} + EndGlobalSection +EndGlobal diff --git a/BookApp/BookApp/App.xaml b/BookApp/BookApp/App.xaml new file mode 100644 index 0000000..1a5c6d1 --- /dev/null +++ b/BookApp/BookApp/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/BookApp/BookApp/App.xaml.cs b/BookApp/BookApp/App.xaml.cs new file mode 100644 index 0000000..f7c4815 --- /dev/null +++ b/BookApp/BookApp/App.xaml.cs @@ -0,0 +1,12 @@ +namespace BookApp +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/BookApp/BookApp/AppShell.xaml b/BookApp/BookApp/AppShell.xaml new file mode 100644 index 0000000..4df8add --- /dev/null +++ b/BookApp/BookApp/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/BookApp/BookApp/AppShell.xaml.cs b/BookApp/BookApp/AppShell.xaml.cs new file mode 100644 index 0000000..041df04 --- /dev/null +++ b/BookApp/BookApp/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace BookApp +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/BookApp/BookApp/BookApp.csproj b/BookApp/BookApp/BookApp.csproj new file mode 100644 index 0000000..460126f --- /dev/null +++ b/BookApp/BookApp/BookApp.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + BookApp + true + true + enable + + + BookApp + + + com.companyname.bookapp + 1b9bfc70-0a6f-4c21-88bd-c66f983a30a2 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BookApp/BookApp/MainPage.xaml b/BookApp/BookApp/MainPage.xaml new file mode 100644 index 0000000..b2934fb --- /dev/null +++ b/BookApp/BookApp/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +