diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/README.md b/README.md index f31753a..b5b58f5 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# RelayClient +# RelayChat diff --git a/RelayChat.sln b/RelayChat.sln new file mode 100644 index 0000000..7e0aa23 --- /dev/null +++ b/RelayChat.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RelayChat", "RelayChat\RelayChat.csproj", "{461585E2-F79B-4B79-B52A-0EF5D0A4F50D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/RelayChat/App.xaml b/RelayChat/App.xaml new file mode 100644 index 0000000..5e6756a --- /dev/null +++ b/RelayChat/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/RelayChat/App.xaml.cs b/RelayChat/App.xaml.cs new file mode 100644 index 0000000..3c808e2 --- /dev/null +++ b/RelayChat/App.xaml.cs @@ -0,0 +1,14 @@ +namespace RelayChat; + +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/RelayChat/AppShell.xaml b/RelayChat/AppShell.xaml new file mode 100644 index 0000000..febd54d --- /dev/null +++ b/RelayChat/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/RelayChat/AppShell.xaml.cs b/RelayChat/AppShell.xaml.cs new file mode 100644 index 0000000..81f8101 --- /dev/null +++ b/RelayChat/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace RelayChat; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/RelayChat/MainPage.xaml b/RelayChat/MainPage.xaml new file mode 100644 index 0000000..5486ec0 --- /dev/null +++ b/RelayChat/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +