diff --git a/MIT Master Server/App.config b/MIT Master Server/App.config new file mode 100644 index 0000000..8324aa6 --- /dev/null +++ b/MIT Master Server/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MIT Master Server/MIT Master Server.csproj b/MIT Master Server/MIT Master Server.csproj new file mode 100644 index 0000000..c76fb80 --- /dev/null +++ b/MIT Master Server/MIT Master Server.csproj @@ -0,0 +1,56 @@ + + + + + Debug + AnyCPU + {0A8A25AE-69F6-4F10-95E5-20495717FE34} + Exe + MIT_Master_Server + MIT Master Server + v4.6 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\Articulate-Network\bin\Debug\Articulate-Network.dll + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MIT Master Server/Program.cs b/MIT Master Server/Program.cs new file mode 100644 index 0000000..5f8c45c --- /dev/null +++ b/MIT Master Server/Program.cs @@ -0,0 +1,24 @@ +using Articulate_Network; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MIT_Master_Server +{ + class Program + { + static void Main(string[] args) + { + Server server = new Server(); + + server.Start("127.0.0.1", 50).ContinueWith(t => + { + Console.WriteLine($"Server listening on port 50"); + }); + + Console.ReadKey(); + } + } +} diff --git a/MIT Master Server/Properties/AssemblyInfo.cs b/MIT Master Server/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f64f5e8 --- /dev/null +++ b/MIT Master Server/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MIT Master Server")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Queensland Government")] +[assembly: AssemblyProduct("MIT Master Server")] +[assembly: AssemblyCopyright("Copyright © Queensland Government 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("0a8a25ae-69f6-4f10-95e5-20495717fe34")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]