diff --git a/ErgometerLibrary/ErgometerLibrary.csproj b/ErgometerLibrary/ErgometerLibrary.csproj index ec42b20..74739fe 100644 --- a/ErgometerLibrary/ErgometerLibrary.csproj +++ b/ErgometerLibrary/ErgometerLibrary.csproj @@ -1,10 +1,10 @@ - + Debug AnyCPU - cc20ff4e-8751-42a1-a32b-0e5b22452cac + {CC20FF4E-8751-42A1-A32B-0E5B22452CAC} Library Properties ErgometerLibrary @@ -30,23 +30,20 @@ 4 - - - - - - - - - - - - - - + + + + + + + + - + + + + @@ -57,5 +54,4 @@ --> - - + \ No newline at end of file diff --git a/ErgometerLibrary/Class1.cs b/ErgometerLibrary/FileHandler.cs similarity index 87% rename from ErgometerLibrary/Class1.cs rename to ErgometerLibrary/FileHandler.cs index 1d1b5b4..4a0e52e 100644 --- a/ErgometerLibrary/Class1.cs +++ b/ErgometerLibrary/FileHandler.cs @@ -6,7 +6,8 @@ using System.Threading.Tasks; namespace ErgometerLibrary { - public class Class1 + class FileHandler { + } } diff --git a/ErgometerLibrary/NetCommand.cs b/ErgometerLibrary/NetCommand.cs new file mode 100644 index 0000000..a1bc505 --- /dev/null +++ b/ErgometerLibrary/NetCommand.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ErgometerLibrary +{ + class NetCommand + { + + public int Session { get; set; } + public string DisplayName { get; set; } + public double Timestamp { get; set; } + + public NetCommand(int session, string displayname) + { + Session = session; + DisplayName = displayname; + Timestamp = (DateTime.Now - DateTime.Parse("1/1/1870 0:0:0")).TotalMilliseconds; + } + } +} diff --git a/ErgometerLibrary/Properties/AssemblyInfo.cs b/ErgometerLibrary/Properties/AssemblyInfo.cs index a1697ab..ae62c7a 100644 --- a/ErgometerLibrary/Properties/AssemblyInfo.cs +++ b/ErgometerLibrary/Properties/AssemblyInfo.cs @@ -6,9 +6,9 @@ using System.Runtime.InteropServices; // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("ErgometerLibrary")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("Library with the most common methods and classes for the Ergometer")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Projectgroep A5")] [assembly: AssemblyProduct("ErgometerLibrary")] [assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyTrademark("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 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")] +[assembly: AssemblyVersion("1.0.0.2")] +[assembly: AssemblyFileVersion("1.0.0.2")]