diff --git a/TextSearch/TextSearch.sln b/TextSearch/TextSearch.sln new file mode 100644 index 0000000..fd8ddda --- /dev/null +++ b/TextSearch/TextSearch.sln @@ -0,0 +1,24 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35707.178 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextSearch", "TextSearch\TextSearch.csproj", "{F4638210-0C15-45E5-A02B-1576688E5569}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F4638210-0C15-45E5-A02B-1576688E5569}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4638210-0C15-45E5-A02B-1576688E5569}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4638210-0C15-45E5-A02B-1576688E5569}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {F4638210-0C15-45E5-A02B-1576688E5569}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4638210-0C15-45E5-A02B-1576688E5569}.Release|Any CPU.Build.0 = Release|Any CPU + {F4638210-0C15-45E5-A02B-1576688E5569}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/TextSearch/TextSearch/App.xaml b/TextSearch/TextSearch/App.xaml new file mode 100644 index 0000000..57b1dea --- /dev/null +++ b/TextSearch/TextSearch/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/TextSearch/TextSearch/App.xaml.cs b/TextSearch/TextSearch/App.xaml.cs new file mode 100644 index 0000000..f04ee18 --- /dev/null +++ b/TextSearch/TextSearch/App.xaml.cs @@ -0,0 +1,12 @@ +namespace TextSearch +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/TextSearch/TextSearch/AppShell.xaml b/TextSearch/TextSearch/AppShell.xaml new file mode 100644 index 0000000..3eb2ef4 --- /dev/null +++ b/TextSearch/TextSearch/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/TextSearch/TextSearch/AppShell.xaml.cs b/TextSearch/TextSearch/AppShell.xaml.cs new file mode 100644 index 0000000..745c8b0 --- /dev/null +++ b/TextSearch/TextSearch/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace TextSearch +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/TextSearch/TextSearch/Assets/PDF_Succinctly.pdf b/TextSearch/TextSearch/Assets/PDF_Succinctly.pdf new file mode 100644 index 0000000..f330041 Binary files /dev/null and b/TextSearch/TextSearch/Assets/PDF_Succinctly.pdf differ diff --git a/TextSearch/TextSearch/MainPage.xaml b/TextSearch/TextSearch/MainPage.xaml new file mode 100644 index 0000000..1b25081 --- /dev/null +++ b/TextSearch/TextSearch/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + +