diff --git a/Solution/Wikipet's/Console/Console.csproj b/Solution/Wikipet's/Console/Console.csproj new file mode 100644 index 0000000..d439800 --- /dev/null +++ b/Solution/Wikipet's/Console/Console.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/Solution/Wikipet's/Console/Program.cs b/Solution/Wikipet's/Console/Program.cs new file mode 100644 index 0000000..83fa4f4 --- /dev/null +++ b/Solution/Wikipet's/Console/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/Solution/Wikipet's/Model/Class1.cs b/Solution/Wikipet's/Model/Class1.cs new file mode 100644 index 0000000..34183dd --- /dev/null +++ b/Solution/Wikipet's/Model/Class1.cs @@ -0,0 +1,7 @@ +namespace Model +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/Solution/Wikipet's/Model/Model.csproj b/Solution/Wikipet's/Model/Model.csproj new file mode 100644 index 0000000..4658cbf --- /dev/null +++ b/Solution/Wikipet's/Model/Model.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/Solution/Wikipet's/Views/App.xaml b/Solution/Wikipet's/Views/App.xaml new file mode 100644 index 0000000..49b9b38 --- /dev/null +++ b/Solution/Wikipet's/Views/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Solution/Wikipet's/Views/App.xaml.cs b/Solution/Wikipet's/Views/App.xaml.cs new file mode 100644 index 0000000..2d3448a --- /dev/null +++ b/Solution/Wikipet's/Views/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Views +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/Solution/Wikipet's/Views/AppShell.xaml b/Solution/Wikipet's/Views/AppShell.xaml new file mode 100644 index 0000000..ae7954e --- /dev/null +++ b/Solution/Wikipet's/Views/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Solution/Wikipet's/Views/AppShell.xaml.cs b/Solution/Wikipet's/Views/AppShell.xaml.cs new file mode 100644 index 0000000..c87e1de --- /dev/null +++ b/Solution/Wikipet's/Views/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Views +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/Solution/Wikipet's/Views/MainPage.xaml b/Solution/Wikipet's/Views/MainPage.xaml new file mode 100644 index 0000000..4deb5d0 --- /dev/null +++ b/Solution/Wikipet's/Views/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +