diff --git a/MultiInject.sln b/MultiInject.sln new file mode 100644 index 0000000..50388c6 --- /dev/null +++ b/MultiInject.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiInject", "MultiInject\MultiInject.csproj", "{413B359F-3543-4E64-BC1F-D8852F93D74B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.Build.0 = Release|Any CPU + {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {25EF88E4-ECB4-4553-AD10-495BB7A4CE0A} + EndGlobalSection +EndGlobal diff --git a/MultiInject/App.xaml b/MultiInject/App.xaml new file mode 100644 index 0000000..80a2c5f --- /dev/null +++ b/MultiInject/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MultiInject/App.xaml.cs b/MultiInject/App.xaml.cs new file mode 100644 index 0000000..9fc1efa --- /dev/null +++ b/MultiInject/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MultiInject +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/MultiInject/AppShell.xaml b/MultiInject/AppShell.xaml new file mode 100644 index 0000000..581d047 --- /dev/null +++ b/MultiInject/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/MultiInject/AppShell.xaml.cs b/MultiInject/AppShell.xaml.cs new file mode 100644 index 0000000..e16b76e --- /dev/null +++ b/MultiInject/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MultiInject +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MultiInject/MainPage.xaml b/MultiInject/MainPage.xaml new file mode 100644 index 0000000..12dc18b --- /dev/null +++ b/MultiInject/MainPage.xaml @@ -0,0 +1,33 @@ + + + + + + + + + +