├── Client GUI ├── About.Designer.cs ├── About.cs ├── About.resx ├── App.config └── bin │ └── Debug │ ├── Client GUI.exe │ ├── Client GUI.exe.config │ ├── Client GUI.pdb │ ├── Client GUI.vshost.exe │ ├── Client GUI.vshost.exe.config │ ├── Client GUI.vshost.exe.manifest │ ├── Client Logic.dll │ └── Client Logic.pdb ├── Client Logic ├── ClassDiagramClientLogic.cd ├── Client Logic.csproj ├── Client.cs └── bin │ └── Debug │ ├── Client Logic.dll │ ├── Client Logic.pdb │ ├── Communicator.dll │ └── Communicator.pdb ├── Communicator ├── ChatMessage.cs ├── ClassDiagramCommunicator.cd ├── Communicator.csproj ├── MessageType.cs ├── bin │ └── Debug │ │ ├── Communicator.dll │ │ └── Communicator.pdb └── obj │ └── Debug │ ├── Communicator.csproj.CoreCompileInputs.cache │ ├── Communicator.csproj.FileListAbsolute.txt │ ├── Communicator.csprojAssemblyReference.cache │ ├── Communicator.csprojResolveAssemblyReference.cache │ ├── Communicator.dll │ ├── Communicator.pdb │ ├── CoreCompileInputs.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── OhadsChat.sln ├── README.md ├── Server Common ├── AppConfiguration.cs ├── bin │ └── Debug │ │ ├── Server Common.dll │ │ └── Server Common.pdb └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Server Common.csproj.CoreCompileInputs.cache │ ├── Server Common.csproj.FileListAbsolute.txt │ ├── Server Common.csprojAssemblyReference.cache │ ├── Server Common.csprojResolveAssemblyReference.cache │ ├── Server Common.dll │ └── Server Common.pdb ├── Server DataAccess ├── ChatServerDataAccess.cs ├── Entities │ ├── ChatServerBaseEntity.cs │ ├── Message.cs │ └── User.cs ├── Interfaces │ └── IChatServerDataAccess.cs ├── bin │ └── Debug │ │ ├── Communicator.dll │ │ ├── Communicator.pdb │ │ ├── Server Common.dll │ │ ├── Server Common.pdb │ │ ├── Server DataAccess.dll │ │ └── Server DataAccess.pdb └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── Server GUI ├── About.Designer.cs ├── About.cs ├── About.resx ├── App.config ├── DatabaseControl.Designer.cs ├── DatabaseControl.cs ├── DatabaseControl.resx ├── HowToUse.Designer.cs ├── HowToUse.cs ├── HowToUse.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── bin │ └── Debug │ │ ├── Communicator.dll │ │ ├── Communicator.pdb │ │ ├── Server Common.dll │ │ ├── Server Common.pdb │ │ ├── Server DataAccess.dll │ │ ├── Server DataAccess.pdb │ │ ├── Server GUI.exe │ │ ├── Server GUI.exe.config │ │ ├── Server GUI.pdb │ │ ├── Server GUI.vshost.exe │ │ ├── Server GUI.vshost.exe.config │ │ ├── Server GUI.vshost.exe.manifest │ │ ├── Server Logic.dll │ │ └── Server Logic.pdb └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferences.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache └── Server Logic ├── ChatClient.cs ├── ClassDiagramServerLogic.cd ├── bin └── Debug │ ├── Communicator.dll │ ├── Communicator.pdb │ ├── Server Common.dll │ ├── Server Common.pdb │ ├── Server DataAccess.dll │ ├── Server DataAccess.pdb │ ├── Server Logic.dll │ └── Server Logic.pdb └── obj └── Debug ├── CoreCompileInputs.cache └── DesignTimeResolveAssemblyReferencesInput.cache /Client GUI/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/About.Designer.cs -------------------------------------------------------------------------------- /Client GUI/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/About.cs -------------------------------------------------------------------------------- /Client GUI/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/About.resx -------------------------------------------------------------------------------- /Client GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/App.config -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.exe -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.exe.config -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.pdb -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.vshost.exe -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.vshost.exe.config -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client GUI.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client GUI.vshost.exe.manifest -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client Logic.dll -------------------------------------------------------------------------------- /Client GUI/bin/Debug/Client Logic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client GUI/bin/Debug/Client Logic.pdb -------------------------------------------------------------------------------- /Client Logic/ClassDiagramClientLogic.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/ClassDiagramClientLogic.cd -------------------------------------------------------------------------------- /Client Logic/Client Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/Client Logic.csproj -------------------------------------------------------------------------------- /Client Logic/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/Client.cs -------------------------------------------------------------------------------- /Client Logic/bin/Debug/Client Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/bin/Debug/Client Logic.dll -------------------------------------------------------------------------------- /Client Logic/bin/Debug/Client Logic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/bin/Debug/Client Logic.pdb -------------------------------------------------------------------------------- /Client Logic/bin/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/bin/Debug/Communicator.dll -------------------------------------------------------------------------------- /Client Logic/bin/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Client Logic/bin/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Communicator/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/ChatMessage.cs -------------------------------------------------------------------------------- /Communicator/ClassDiagramCommunicator.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/ClassDiagramCommunicator.cd -------------------------------------------------------------------------------- /Communicator/Communicator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/Communicator.csproj -------------------------------------------------------------------------------- /Communicator/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/MessageType.cs -------------------------------------------------------------------------------- /Communicator/bin/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/bin/Debug/Communicator.dll -------------------------------------------------------------------------------- /Communicator/bin/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/bin/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7ad718ae083e0035c3fefeb0c78efeab1274f3ed 2 | -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/Communicator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/Communicator.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/Communicator.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/Communicator.dll -------------------------------------------------------------------------------- /Communicator/obj/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Communicator/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9b13e83a6e9bf4a530eab63e7311f2c5cdcded24 2 | -------------------------------------------------------------------------------- /Communicator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Communicator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /OhadsChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/OhadsChat.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/README.md -------------------------------------------------------------------------------- /Server Common/AppConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/AppConfiguration.cs -------------------------------------------------------------------------------- /Server Common/bin/Debug/Server Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/bin/Debug/Server Common.dll -------------------------------------------------------------------------------- /Server Common/bin/Debug/Server Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/bin/Debug/Server Common.pdb -------------------------------------------------------------------------------- /Server Common/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 22c009cc8274f3f3b01b7b085c5e41dbc47bd6e1 2 | -------------------------------------------------------------------------------- /Server Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c57179cd6022ade541d351c28b856a5da4ac9750 2 | -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/Server Common.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/Server Common.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/Server Common.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/Server Common.dll -------------------------------------------------------------------------------- /Server Common/obj/Debug/Server Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Common/obj/Debug/Server Common.pdb -------------------------------------------------------------------------------- /Server DataAccess/ChatServerDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/ChatServerDataAccess.cs -------------------------------------------------------------------------------- /Server DataAccess/Entities/ChatServerBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/Entities/ChatServerBaseEntity.cs -------------------------------------------------------------------------------- /Server DataAccess/Entities/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/Entities/Message.cs -------------------------------------------------------------------------------- /Server DataAccess/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/Entities/User.cs -------------------------------------------------------------------------------- /Server DataAccess/Interfaces/IChatServerDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/Interfaces/IChatServerDataAccess.cs -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Communicator.dll -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Server Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Server Common.dll -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Server Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Server Common.pdb -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Server DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Server DataAccess.dll -------------------------------------------------------------------------------- /Server DataAccess/bin/Debug/Server DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/bin/Debug/Server DataAccess.pdb -------------------------------------------------------------------------------- /Server DataAccess/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | eccfc1d7faf6985abe8f320a243da588c0b47b64 2 | -------------------------------------------------------------------------------- /Server DataAccess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server DataAccess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Server GUI/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/About.Designer.cs -------------------------------------------------------------------------------- /Server GUI/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/About.cs -------------------------------------------------------------------------------- /Server GUI/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/About.resx -------------------------------------------------------------------------------- /Server GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/App.config -------------------------------------------------------------------------------- /Server GUI/DatabaseControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/DatabaseControl.Designer.cs -------------------------------------------------------------------------------- /Server GUI/DatabaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/DatabaseControl.cs -------------------------------------------------------------------------------- /Server GUI/DatabaseControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/DatabaseControl.resx -------------------------------------------------------------------------------- /Server GUI/HowToUse.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/HowToUse.Designer.cs -------------------------------------------------------------------------------- /Server GUI/HowToUse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/HowToUse.cs -------------------------------------------------------------------------------- /Server GUI/HowToUse.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/HowToUse.resx -------------------------------------------------------------------------------- /Server GUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /Server GUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/MainForm.cs -------------------------------------------------------------------------------- /Server GUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/MainForm.resx -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Communicator.dll -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server Common.dll -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server Common.pdb -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server DataAccess.dll -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server DataAccess.pdb -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.exe -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.exe.config -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.pdb -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.vshost.exe -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.vshost.exe.config -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server GUI.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server GUI.vshost.exe.manifest -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server Logic.dll -------------------------------------------------------------------------------- /Server GUI/bin/Debug/Server Logic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/bin/Debug/Server Logic.pdb -------------------------------------------------------------------------------- /Server GUI/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a284c9503df1ebbbf5dd73b5788dbbfc9b59cc1 2 | -------------------------------------------------------------------------------- /Server GUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Server GUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server GUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Server Logic/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/ChatClient.cs -------------------------------------------------------------------------------- /Server Logic/ClassDiagramServerLogic.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/ClassDiagramServerLogic.cd -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Communicator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Communicator.dll -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Communicator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Communicator.pdb -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server Common.dll -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server Common.pdb -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server DataAccess.dll -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server DataAccess.pdb -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server Logic.dll -------------------------------------------------------------------------------- /Server Logic/bin/Debug/Server Logic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/bin/Debug/Server Logic.pdb -------------------------------------------------------------------------------- /Server Logic/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7a6e6f5133d974cf5dd6e3dfc7ad082dc286bfe9 2 | -------------------------------------------------------------------------------- /Server Logic/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohad-shai/chat-app-with-db/HEAD/Server Logic/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache --------------------------------------------------------------------------------