diff --git a/asugaksharp.sln b/asugaksharp.sln new file mode 100644 index 0000000..38595c4 --- /dev/null +++ b/asugaksharp.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.13.35931.197 d17.13 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "asugaksharp", "asugaksharp\asugaksharp.csproj", "{9A5D7B67-E0CB-4B72-940C-0F693F34D40A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Release|Any CPU.Build.0 = Release|Any CPU + {9A5D7B67-E0CB-4B72-940C-0F693F34D40A}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CD74FFFF-FCB8-494F-A701-F9A844CC971E} + EndGlobalSection +EndGlobal diff --git a/asugaksharp/App.xaml b/asugaksharp/App.xaml new file mode 100644 index 0000000..687bce0 --- /dev/null +++ b/asugaksharp/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/asugaksharp/App.xaml.cs b/asugaksharp/App.xaml.cs new file mode 100644 index 0000000..3f52bf4 --- /dev/null +++ b/asugaksharp/App.xaml.cs @@ -0,0 +1,12 @@ +namespace asugaksharp +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/asugaksharp/AppShell.xaml b/asugaksharp/AppShell.xaml new file mode 100644 index 0000000..d20e8f2 --- /dev/null +++ b/asugaksharp/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/asugaksharp/AppShell.xaml.cs b/asugaksharp/AppShell.xaml.cs new file mode 100644 index 0000000..9b8718d --- /dev/null +++ b/asugaksharp/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace asugaksharp +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/asugaksharp/MainPage.xaml b/asugaksharp/MainPage.xaml new file mode 100644 index 0000000..cced42d --- /dev/null +++ b/asugaksharp/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +