commit 94cd6d097e165816a529a197ae3dc5bc24f1b26a Author: unknown Date: Sat Jan 11 12:49:49 2025 +0545 Project Structure Layout diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..b411e04 --- /dev/null +++ b/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..896a49f --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,15 @@ +namespace Justice +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/AppShell.xaml b/AppShell.xaml new file mode 100644 index 0000000..66d85ee --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..d89c2e3 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Justice +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/Justice.csproj b/Justice.csproj new file mode 100644 index 0000000..33ff0ea --- /dev/null +++ b/Justice.csproj @@ -0,0 +1,67 @@ + + + + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 + + + + + + + Exe + Justice + true + true + enable + enable + + + Justice + + + com.companyname.justice + + + 1.0 + 1 + + + None + + 15.0 + 15.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Justice.csproj.user b/Justice.csproj.user new file mode 100644 index 0000000..cd723ee --- /dev/null +++ b/Justice.csproj.user @@ -0,0 +1,31 @@ + + + + False + net9.0-windows10.0.19041.0 + Windows Machine + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/Justice.sln b/Justice.sln new file mode 100644 index 0000000..da439ee --- /dev/null +++ b/Justice.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35527.113 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Justice", "Justice.csproj", "{C9C0819F-18B1-47E3-B27A-1992686E61D1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C9C0819F-18B1-47E3-B27A-1992686E61D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C9C0819F-18B1-47E3-B27A-1992686E61D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C9C0819F-18B1-47E3-B27A-1992686E61D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C9C0819F-18B1-47E3-B27A-1992686E61D1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..9e9f5a4 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +