diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9b6ede8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,22 @@
+#ignore thumbnails created by windows
+Thumbs.db
+#Ignore files build by Visual Studio
+*.user
+*.aps
+*.pch
+*.vspscc
+*_i.c
+*_p.c
+*.ncb
+*.suo
+*.bak
+*.cache
+*.ilk
+*.log
+[Bb]in/
+[Dd]ebug*/
+*.sbr
+obj/
+[Rr]elease*/
+_ReSharper*/
+SIMPLSharpLogs/
\ No newline at end of file
diff --git a/Pepperdash Core/Pepperdash Core.suo b/Pepperdash Core/Pepperdash Core.suo
index 24b13c3..bc78b2b 100644
Binary files a/Pepperdash Core/Pepperdash Core.suo and b/Pepperdash Core/Pepperdash Core.suo differ
diff --git a/Pepperdash Core/Pepperdash Core/Debug/Debug.cs b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs
similarity index 97%
rename from Pepperdash Core/Pepperdash Core/Debug/Debug.cs
rename to Pepperdash Core/Pepperdash Core/Logging/Debug.cs
index 328cfc4..3dbb794 100644
--- a/Pepperdash Core/Pepperdash Core/Debug/Debug.cs
+++ b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs
@@ -1,299 +1,299 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Crestron.SimplSharp;
-using Crestron.SimplSharp.CrestronLogger;
-using Crestron.SimplSharp.CrestronIO;
-using Newtonsoft.Json;
-using PepperDash.Core.DebugThings;
-
-
-namespace PepperDash.Core
-{
- public static class Debug
- {
- ///
- /// Describes the folder location where a given program stores it's debug level memory. By default, the
- /// file written will be named appNdebug where N is 1-10.
- ///
- public static string FilePathPrefix = @"\nvram\debug\";
-
- ///
- /// The name of the file containing the current debug settings.
- ///
- public static string FileName = string.Format(@"app{0}Debug.json", InitialParametersClass.ApplicationNumber);
-
- public static int Level { get; private set; }
-
- static DebugContextCollection Contexts;
-
- static int SaveTimeoutMs = 30000;
-
- static CTimer SaveTimer;
-
- static Debug()
- {
- //CrestronDataStoreStatic.InitCrestronDataStore();
- if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
- {
- // Add command to console
- CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
- "appdebug:P [0-2]: Sets the application's console debug message level",
- ConsoleAccessLevelEnum.AccessOperator);
- CrestronConsole.AddNewConsoleCommand(ShowDebugLog, "appdebuglog",
- "appdebuglog:P [all] Use \"all\" for full log.",
- ConsoleAccessLevelEnum.AccessOperator);
- CrestronConsole.AddNewConsoleCommand(s => CrestronLogger.Clear(false), "appdebugclear",
- "appdebugclear:P Clears the current custom log",
- ConsoleAccessLevelEnum.AccessOperator);
- }
-
- CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
-
- LoadMemory();
- Level = Contexts.GetOrCreateItem("DEFAULT").Level;
-
- CrestronLogger.Initialize(2, LoggerModeEnum.RM); // Use RM instead of DEFAULT as not to double-up console messages.
- }
-
- ///
- /// Used to save memory when shutting down
- ///
- ///
- static void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
- {
- if (programEventType == eProgramStatusEventType.Stopping)
- {
- if (SaveTimer != null)
- {
- SaveTimer.Stop();
- SaveTimer = null;
- }
- Console(0, "Saving debug settings");
- SaveMemory();
- }
- }
-
- ///
- /// Callback for console command
- ///
- ///
- public static void SetDebugFromConsole(string levelString)
- {
- try
- {
- if (string.IsNullOrEmpty(levelString.Trim()))
- {
- CrestronConsole.PrintLine("AppDebug level = {0}", Level);
- return;
- }
-
- SetDebugLevel(Convert.ToInt32(levelString));
- }
- catch
- {
- CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
- }
- }
-
- ///
- /// Sets the debug level
- ///
- /// Valid values 0 (no debug), 1 (critical), 2 (all messages)
- public static void SetDebugLevel(int level)
- {
- if (level <= 2)
- {
- Level = level;
- Contexts.GetOrCreateItem("DEFAULT").Level = level;
- SaveMemoryOnTimeout();
-
- CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
- InitialParametersClass.ApplicationNumber, Level);
-
- //var err = CrestronDataStoreStatic.SetLocalUintValue("DebugLevel", level);
- //if (err != CrestronDataStore.CDS_ERROR.CDS_SUCCESS)
- // CrestronConsole.PrintLine("Error saving console debug level setting: {0}", err);
- }
- }
-
- ///
- ///
- ///
- public static void ShowDebugLog(string s)
- {
- var loglist = CrestronLogger.PrintTheLog(s.ToLower() == "all");
- foreach (var l in loglist)
- CrestronConsole.ConsoleCommandResponse(l + CrestronEnvironment.NewLine);
- }
-
- ///
- /// Prints message to console if current debug level is equal to or higher than the level of this message.
- /// Uses CrestronConsole.PrintLine.
- ///
- ///
- /// Console format string
- /// Object parameters
- public static void Console(uint level, string format, params object[] items)
- {
- if (Level >= level)
- CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
- string.Format(format, items));
- }
-
- ///
- /// Appends a device Key to the beginning of a message
- ///
- public static void Console(uint level, IKeyed dev, string format, params object[] items)
- {
- if (Level >= level)
- Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
- }
-
- public static void Console(uint level, IKeyed dev, ErrorLogLevel errorLogLevel,
- string format, params object[] items)
- {
- if (Level >= level)
- {
- var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
- Console(level, str);
- LogError(errorLogLevel, str);
- }
- }
-
- public static void Console(uint level, ErrorLogLevel errorLogLevel,
- string format, params object[] items)
- {
- if (Level >= level)
- {
- var str = string.Format(format, items);
- Console(level, str);
- LogError(errorLogLevel, str);
- }
- }
-
- ///
- /// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at
- /// or above the level provided, then the output will be written to both console and the log. Otherwise
- /// it will only be written to the log.
- ///
- ///
- ///
- ///
- public static void ConsoleWithLog(uint level, string format, params object[] items)
- {
- var str = string.Format(format, items);
- if (Level >= level)
- CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
- CrestronLogger.WriteToLog(str, level);
- }
-
- ///
- /// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at
- /// or above the level provided, then the output will be written to both console and the log. Otherwise
- /// it will only be written to the log.
- ///
- ///
- ///
- /// String.format string
- /// Parameters for substitution in the format string.
- public static void ConsoleWithLog(uint level, IKeyed dev, string format, params object[] items)
- {
- var str = string.Format(format, items);
- if (Level >= level)
- ConsoleWithLog(level, "[{0}] {1}", dev.Key, str);
- }
-
- ///
- /// Prints to log and error log
- ///
- ///
- ///
- public static void LogError(ErrorLogLevel errorLogLevel, string str)
- {
- string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
- switch (errorLogLevel)
- {
- case ErrorLogLevel.Error:
- ErrorLog.Error(msg);
- break;
- case ErrorLogLevel.Warning:
- ErrorLog.Warn(msg);
- break;
- case ErrorLogLevel.Notice:
- ErrorLog.Notice(msg);
- break;
- }
- }
-
- ///
- /// Writes the memory object after timeout
- ///
- static void SaveMemoryOnTimeout()
- {
- if (SaveTimer == null)
- SaveTimer = new CTimer(o =>
- {
- SaveTimer = null;
- SaveMemory();
- }, SaveTimeoutMs);
- else
- SaveTimer.Reset(SaveTimeoutMs);
- }
-
- ///
- /// Writes the memory - use SaveMemoryOnTimeout
- ///
- static void SaveMemory()
- {
- //var dir = @"\NVRAM\debug";
- //if (!Directory.Exists(dir))
- // Directory.Create(dir);
-
- using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
- {
- var json = JsonConvert.SerializeObject(Contexts);
- sw.Write(json);
- sw.Flush();
- }
- }
-
- ///
- ///
- ///
- static void LoadMemory()
- {
- var file = GetMemoryFileName();
- if (File.Exists(file))
- {
- using (StreamReader sr = new StreamReader(file))
- {
- var json = sr.ReadToEnd();
- Contexts = JsonConvert.DeserializeObject(json);
-
- if (Contexts != null)
- {
- Debug.Console(0, "Debug memory restored from file");
- return;
- }
- }
- }
-
- Contexts = new DebugContextCollection();
- }
-
- ///
- /// Helper to get the file path for this app's debug memory
- ///
- static string GetMemoryFileName()
- {
- return string.Format(@"\NVRAM\debugSettings\program{0}", InitialParametersClass.ApplicationNumber);
- }
-
- public enum ErrorLogLevel
- {
- Error, Warning, Notice, None
- }
- }
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Crestron.SimplSharp;
+using Crestron.SimplSharp.CrestronLogger;
+using Crestron.SimplSharp.CrestronIO;
+using Newtonsoft.Json;
+using PepperDash.Core.DebugThings;
+
+
+namespace PepperDash.Core
+{
+ public static class Debug
+ {
+ ///
+ /// Describes the folder location where a given program stores it's debug level memory. By default, the
+ /// file written will be named appNdebug where N is 1-10.
+ ///
+ public static string FilePathPrefix = @"\nvram\debug\";
+
+ ///
+ /// The name of the file containing the current debug settings.
+ ///
+ public static string FileName = string.Format(@"app{0}Debug.json", InitialParametersClass.ApplicationNumber);
+
+ public static int Level { get; private set; }
+
+ static DebugContextCollection Contexts;
+
+ static int SaveTimeoutMs = 30000;
+
+ static CTimer SaveTimer;
+
+ static Debug()
+ {
+ //CrestronDataStoreStatic.InitCrestronDataStore();
+ if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
+ {
+ // Add command to console
+ CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
+ "appdebug:P [0-2]: Sets the application's console debug message level",
+ ConsoleAccessLevelEnum.AccessOperator);
+ CrestronConsole.AddNewConsoleCommand(ShowDebugLog, "appdebuglog",
+ "appdebuglog:P [all] Use \"all\" for full log.",
+ ConsoleAccessLevelEnum.AccessOperator);
+ CrestronConsole.AddNewConsoleCommand(s => CrestronLogger.Clear(false), "appdebugclear",
+ "appdebugclear:P Clears the current custom log",
+ ConsoleAccessLevelEnum.AccessOperator);
+ }
+
+ CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
+
+ LoadMemory();
+ Level = Contexts.GetOrCreateItem("DEFAULT").Level;
+
+ CrestronLogger.Initialize(2, LoggerModeEnum.RM); // Use RM instead of DEFAULT as not to double-up console messages.
+ }
+
+ ///
+ /// Used to save memory when shutting down
+ ///
+ ///
+ static void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
+ {
+ if (programEventType == eProgramStatusEventType.Stopping)
+ {
+ if (SaveTimer != null)
+ {
+ SaveTimer.Stop();
+ SaveTimer = null;
+ }
+ Console(0, "Saving debug settings");
+ SaveMemory();
+ }
+ }
+
+ ///
+ /// Callback for console command
+ ///
+ ///
+ public static void SetDebugFromConsole(string levelString)
+ {
+ try
+ {
+ if (string.IsNullOrEmpty(levelString.Trim()))
+ {
+ CrestronConsole.PrintLine("AppDebug level = {0}", Level);
+ return;
+ }
+
+ SetDebugLevel(Convert.ToInt32(levelString));
+ }
+ catch
+ {
+ CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
+ }
+ }
+
+ ///
+ /// Sets the debug level
+ ///
+ /// Valid values 0 (no debug), 1 (critical), 2 (all messages)
+ public static void SetDebugLevel(int level)
+ {
+ if (level <= 2)
+ {
+ Level = level;
+ Contexts.GetOrCreateItem("DEFAULT").Level = level;
+ SaveMemoryOnTimeout();
+
+ CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
+ InitialParametersClass.ApplicationNumber, Level);
+
+ //var err = CrestronDataStoreStatic.SetLocalUintValue("DebugLevel", level);
+ //if (err != CrestronDataStore.CDS_ERROR.CDS_SUCCESS)
+ // CrestronConsole.PrintLine("Error saving console debug level setting: {0}", err);
+ }
+ }
+
+ ///
+ ///
+ ///
+ public static void ShowDebugLog(string s)
+ {
+ var loglist = CrestronLogger.PrintTheLog(s.ToLower() == "all");
+ foreach (var l in loglist)
+ CrestronConsole.ConsoleCommandResponse(l + CrestronEnvironment.NewLine);
+ }
+
+ ///
+ /// Prints message to console if current debug level is equal to or higher than the level of this message.
+ /// Uses CrestronConsole.PrintLine.
+ ///
+ ///
+ /// Console format string
+ /// Object parameters
+ public static void Console(uint level, string format, params object[] items)
+ {
+ if (Level >= level)
+ CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
+ string.Format(format, items));
+ }
+
+ ///
+ /// Appends a device Key to the beginning of a message
+ ///
+ public static void Console(uint level, IKeyed dev, string format, params object[] items)
+ {
+ if (Level >= level)
+ Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
+ }
+
+ public static void Console(uint level, IKeyed dev, ErrorLogLevel errorLogLevel,
+ string format, params object[] items)
+ {
+ if (Level >= level)
+ {
+ var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
+ Console(level, str);
+ LogError(errorLogLevel, str);
+ }
+ }
+
+ public static void Console(uint level, ErrorLogLevel errorLogLevel,
+ string format, params object[] items)
+ {
+ if (Level >= level)
+ {
+ var str = string.Format(format, items);
+ Console(level, str);
+ LogError(errorLogLevel, str);
+ }
+ }
+
+ ///
+ /// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at
+ /// or above the level provided, then the output will be written to both console and the log. Otherwise
+ /// it will only be written to the log.
+ ///
+ ///
+ ///
+ ///
+ public static void ConsoleWithLog(uint level, string format, params object[] items)
+ {
+ var str = string.Format(format, items);
+ if (Level >= level)
+ CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
+ CrestronLogger.WriteToLog(str, level);
+ }
+
+ ///
+ /// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at
+ /// or above the level provided, then the output will be written to both console and the log. Otherwise
+ /// it will only be written to the log.
+ ///
+ ///
+ ///
+ /// String.format string
+ /// Parameters for substitution in the format string.
+ public static void ConsoleWithLog(uint level, IKeyed dev, string format, params object[] items)
+ {
+ var str = string.Format(format, items);
+ if (Level >= level)
+ ConsoleWithLog(level, "[{0}] {1}", dev.Key, str);
+ }
+
+ ///
+ /// Prints to log and error log
+ ///
+ ///
+ ///
+ public static void LogError(ErrorLogLevel errorLogLevel, string str)
+ {
+ string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
+ switch (errorLogLevel)
+ {
+ case ErrorLogLevel.Error:
+ ErrorLog.Error(msg);
+ break;
+ case ErrorLogLevel.Warning:
+ ErrorLog.Warn(msg);
+ break;
+ case ErrorLogLevel.Notice:
+ ErrorLog.Notice(msg);
+ break;
+ }
+ }
+
+ ///
+ /// Writes the memory object after timeout
+ ///
+ static void SaveMemoryOnTimeout()
+ {
+ if (SaveTimer == null)
+ SaveTimer = new CTimer(o =>
+ {
+ SaveTimer = null;
+ SaveMemory();
+ }, SaveTimeoutMs);
+ else
+ SaveTimer.Reset(SaveTimeoutMs);
+ }
+
+ ///
+ /// Writes the memory - use SaveMemoryOnTimeout
+ ///
+ static void SaveMemory()
+ {
+ //var dir = @"\NVRAM\debug";
+ //if (!Directory.Exists(dir))
+ // Directory.Create(dir);
+
+ using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
+ {
+ var json = JsonConvert.SerializeObject(Contexts);
+ sw.Write(json);
+ sw.Flush();
+ }
+ }
+
+ ///
+ ///
+ ///
+ static void LoadMemory()
+ {
+ var file = GetMemoryFileName();
+ if (File.Exists(file))
+ {
+ using (StreamReader sr = new StreamReader(file))
+ {
+ var json = sr.ReadToEnd();
+ Contexts = JsonConvert.DeserializeObject(json);
+
+ if (Contexts != null)
+ {
+ Debug.Console(0, "Debug memory restored from file");
+ return;
+ }
+ }
+ }
+
+ Contexts = new DebugContextCollection();
+ }
+
+ ///
+ /// Helper to get the file path for this app's debug memory
+ ///
+ static string GetMemoryFileName()
+ {
+ return string.Format(@"\NVRAM\debugSettings\program{0}", InitialParametersClass.ApplicationNumber);
+ }
+
+ public enum ErrorLogLevel
+ {
+ Error, Warning, Notice, None
+ }
+ }
}
\ No newline at end of file
diff --git a/Pepperdash Core/Pepperdash Core/Debug/DebugContext.cs b/Pepperdash Core/Pepperdash Core/Logging/DebugContext.cs
similarity index 97%
rename from Pepperdash Core/Pepperdash Core/Debug/DebugContext.cs
rename to Pepperdash Core/Pepperdash Core/Logging/DebugContext.cs
index 56d7989..34b196d 100644
--- a/Pepperdash Core/Pepperdash Core/Debug/DebugContext.cs
+++ b/Pepperdash Core/Pepperdash Core/Logging/DebugContext.cs
@@ -1,255 +1,255 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Crestron.SimplSharp;
-using Crestron.SimplSharp.CrestronDataStore;
-using Crestron.SimplSharp.CrestronIO;
-using Newtonsoft.Json;
-using PepperDash.Core.DebugThings;
-
-
-namespace PepperDash.Core
-{
- public class DebugContext
- {
- ///
- /// Describes the folder location where a given program stores it's debug level memory. By default, the
- /// file written will be named appNdebug where N is 1-10.
- ///
- public string Key { get; private set; }
-
- /////
- ///// The name of the file containing the current debug settings.
- /////
- //string FileName = string.Format(@"\nvram\debug\app{0}Debug.json", InitialParametersClass.ApplicationNumber);
-
- DebugContextSaveData SaveData;
-
- int SaveTimeoutMs = 30000;
-
- CTimer SaveTimer;
-
-
- static List Contexts = new List();
-
- ///
- /// Creates or gets a debug context
- ///
- ///
- ///
- public static DebugContext GetDebugContext(string key)
- {
- var context = Contexts.FirstOrDefault(c => c.Key.Equals(key, StringComparison.OrdinalIgnoreCase));
- if (context == null)
- {
- context = new DebugContext(key);
- Contexts.Add(context);
- }
- return context;
- }
-
- ///
- /// Do not use. For S+ access.
- ///
- public DebugContext() { }
-
- DebugContext(string key)
- {
- Key = key;
- if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
- {
- // Add command to console
- CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
- "appdebug:P [0-2]: Sets the application's console debug message level",
- ConsoleAccessLevelEnum.AccessOperator);
- }
-
- CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
-
- LoadMemory();
- }
-
- ///
- /// Used to save memory when shutting down
- ///
- ///
- void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
- {
- if (programEventType == eProgramStatusEventType.Stopping)
- {
- if (SaveTimer != null)
- {
- SaveTimer.Stop();
- SaveTimer = null;
- }
- Console(0, "Saving debug settings");
- SaveMemory();
- }
- }
-
- ///
- /// Callback for console command
- ///
- ///
- public void SetDebugFromConsole(string levelString)
- {
- try
- {
- if (string.IsNullOrEmpty(levelString.Trim()))
- {
- CrestronConsole.PrintLine("AppDebug level = {0}", SaveData.Level);
- return;
- }
-
- SetDebugLevel(Convert.ToInt32(levelString));
- }
- catch
- {
- CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
- }
- }
-
- ///
- /// Sets the debug level
- ///
- /// Valid values 0 (no debug), 1 (critical), 2 (all messages)
- public void SetDebugLevel(int level)
- {
- if (level <= 2)
- {
- SaveData.Level = level;
- SaveMemoryOnTimeout();
-
- CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
- InitialParametersClass.ApplicationNumber, SaveData.Level);
- }
- }
-
- ///
- /// Prints message to console if current debug level is equal to or higher than the level of this message.
- /// Uses CrestronConsole.PrintLine.
- ///
- ///
- /// Console format string
- /// Object parameters
- public void Console(uint level, string format, params object[] items)
- {
- if (SaveData.Level >= level)
- CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
- string.Format(format, items));
- }
-
- ///
- /// Appends a device Key to the beginning of a message
- ///
- public void Console(uint level, IKeyed dev, string format, params object[] items)
- {
- if (SaveData.Level >= level)
- Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
- }
-
- public void Console(uint level, IKeyed dev, Debug.ErrorLogLevel errorLogLevel,
- string format, params object[] items)
- {
- if (SaveData.Level >= level)
- {
- var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
- Console(level, str);
- LogError(errorLogLevel, str);
- }
- }
-
- public void Console(uint level, Debug.ErrorLogLevel errorLogLevel,
- string format, params object[] items)
- {
- if (SaveData.Level >= level)
- {
- var str = string.Format(format, items);
- Console(level, str);
- LogError(errorLogLevel, str);
- }
- }
-
- public void LogError(Debug.ErrorLogLevel errorLogLevel, string str)
- {
- string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
- switch (errorLogLevel)
- {
- case Debug.ErrorLogLevel.Error:
- ErrorLog.Error(msg);
- break;
- case Debug.ErrorLogLevel.Warning:
- ErrorLog.Warn(msg);
- break;
- case Debug.ErrorLogLevel.Notice:
- ErrorLog.Notice(msg);
- break;
- }
- }
-
- ///
- /// Writes the memory object after timeout
- ///
- void SaveMemoryOnTimeout()
- {
- if (SaveTimer == null)
- SaveTimer = new CTimer(o =>
- {
- SaveTimer = null;
- SaveMemory();
- }, SaveTimeoutMs);
- else
- SaveTimer.Reset(SaveTimeoutMs);
- }
-
- ///
- /// Writes the memory - use SaveMemoryOnTimeout
- ///
- void SaveMemory()
- {
- using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
- {
- var json = JsonConvert.SerializeObject(SaveData);
- sw.Write(json);
- sw.Flush();
- }
- }
-
- ///
- ///
- ///
- void LoadMemory()
- {
- var file = GetMemoryFileName();
- if (File.Exists(file))
- {
- using (StreamReader sr = new StreamReader(file))
- {
- var data = JsonConvert.DeserializeObject(sr.ReadToEnd());
- if (data != null)
- {
- SaveData = data;
- Debug.Console(0, "Debug memory restored from file");
- return;
- }
- else
- SaveData = new DebugContextSaveData();
- }
- }
- }
-
- ///
- /// Helper to get the file path for this app's debug memory
- ///
- string GetMemoryFileName()
- {
- return string.Format(@"\NVRAM\debugSettings\program{0}-{1}", InitialParametersClass.ApplicationNumber, Key);
- }
- }
-
- public class DebugContextSaveData
- {
- public int Level { get; set; }
- }
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Crestron.SimplSharp;
+using Crestron.SimplSharp.CrestronDataStore;
+using Crestron.SimplSharp.CrestronIO;
+using Newtonsoft.Json;
+using PepperDash.Core.DebugThings;
+
+
+namespace PepperDash.Core
+{
+ public class DebugContext
+ {
+ ///
+ /// Describes the folder location where a given program stores it's debug level memory. By default, the
+ /// file written will be named appNdebug where N is 1-10.
+ ///
+ public string Key { get; private set; }
+
+ /////
+ ///// The name of the file containing the current debug settings.
+ /////
+ //string FileName = string.Format(@"\nvram\debug\app{0}Debug.json", InitialParametersClass.ApplicationNumber);
+
+ DebugContextSaveData SaveData;
+
+ int SaveTimeoutMs = 30000;
+
+ CTimer SaveTimer;
+
+
+ static List Contexts = new List();
+
+ ///
+ /// Creates or gets a debug context
+ ///
+ ///
+ ///
+ public static DebugContext GetDebugContext(string key)
+ {
+ var context = Contexts.FirstOrDefault(c => c.Key.Equals(key, StringComparison.OrdinalIgnoreCase));
+ if (context == null)
+ {
+ context = new DebugContext(key);
+ Contexts.Add(context);
+ }
+ return context;
+ }
+
+ ///
+ /// Do not use. For S+ access.
+ ///
+ public DebugContext() { }
+
+ DebugContext(string key)
+ {
+ Key = key;
+ if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
+ {
+ // Add command to console
+ CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
+ "appdebug:P [0-2]: Sets the application's console debug message level",
+ ConsoleAccessLevelEnum.AccessOperator);
+ }
+
+ CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
+
+ LoadMemory();
+ }
+
+ ///
+ /// Used to save memory when shutting down
+ ///
+ ///
+ void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
+ {
+ if (programEventType == eProgramStatusEventType.Stopping)
+ {
+ if (SaveTimer != null)
+ {
+ SaveTimer.Stop();
+ SaveTimer = null;
+ }
+ Console(0, "Saving debug settings");
+ SaveMemory();
+ }
+ }
+
+ ///
+ /// Callback for console command
+ ///
+ ///
+ public void SetDebugFromConsole(string levelString)
+ {
+ try
+ {
+ if (string.IsNullOrEmpty(levelString.Trim()))
+ {
+ CrestronConsole.PrintLine("AppDebug level = {0}", SaveData.Level);
+ return;
+ }
+
+ SetDebugLevel(Convert.ToInt32(levelString));
+ }
+ catch
+ {
+ CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
+ }
+ }
+
+ ///
+ /// Sets the debug level
+ ///
+ /// Valid values 0 (no debug), 1 (critical), 2 (all messages)
+ public void SetDebugLevel(int level)
+ {
+ if (level <= 2)
+ {
+ SaveData.Level = level;
+ SaveMemoryOnTimeout();
+
+ CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
+ InitialParametersClass.ApplicationNumber, SaveData.Level);
+ }
+ }
+
+ ///
+ /// Prints message to console if current debug level is equal to or higher than the level of this message.
+ /// Uses CrestronConsole.PrintLine.
+ ///
+ ///
+ /// Console format string
+ /// Object parameters
+ public void Console(uint level, string format, params object[] items)
+ {
+ if (SaveData.Level >= level)
+ CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
+ string.Format(format, items));
+ }
+
+ ///
+ /// Appends a device Key to the beginning of a message
+ ///
+ public void Console(uint level, IKeyed dev, string format, params object[] items)
+ {
+ if (SaveData.Level >= level)
+ Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
+ }
+
+ public void Console(uint level, IKeyed dev, Debug.ErrorLogLevel errorLogLevel,
+ string format, params object[] items)
+ {
+ if (SaveData.Level >= level)
+ {
+ var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
+ Console(level, str);
+ LogError(errorLogLevel, str);
+ }
+ }
+
+ public void Console(uint level, Debug.ErrorLogLevel errorLogLevel,
+ string format, params object[] items)
+ {
+ if (SaveData.Level >= level)
+ {
+ var str = string.Format(format, items);
+ Console(level, str);
+ LogError(errorLogLevel, str);
+ }
+ }
+
+ public void LogError(Debug.ErrorLogLevel errorLogLevel, string str)
+ {
+ string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
+ switch (errorLogLevel)
+ {
+ case Debug.ErrorLogLevel.Error:
+ ErrorLog.Error(msg);
+ break;
+ case Debug.ErrorLogLevel.Warning:
+ ErrorLog.Warn(msg);
+ break;
+ case Debug.ErrorLogLevel.Notice:
+ ErrorLog.Notice(msg);
+ break;
+ }
+ }
+
+ ///
+ /// Writes the memory object after timeout
+ ///
+ void SaveMemoryOnTimeout()
+ {
+ if (SaveTimer == null)
+ SaveTimer = new CTimer(o =>
+ {
+ SaveTimer = null;
+ SaveMemory();
+ }, SaveTimeoutMs);
+ else
+ SaveTimer.Reset(SaveTimeoutMs);
+ }
+
+ ///
+ /// Writes the memory - use SaveMemoryOnTimeout
+ ///
+ void SaveMemory()
+ {
+ using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
+ {
+ var json = JsonConvert.SerializeObject(SaveData);
+ sw.Write(json);
+ sw.Flush();
+ }
+ }
+
+ ///
+ ///
+ ///
+ void LoadMemory()
+ {
+ var file = GetMemoryFileName();
+ if (File.Exists(file))
+ {
+ using (StreamReader sr = new StreamReader(file))
+ {
+ var data = JsonConvert.DeserializeObject(sr.ReadToEnd());
+ if (data != null)
+ {
+ SaveData = data;
+ Debug.Console(0, "Debug memory restored from file");
+ return;
+ }
+ else
+ SaveData = new DebugContextSaveData();
+ }
+ }
+ }
+
+ ///
+ /// Helper to get the file path for this app's debug memory
+ ///
+ string GetMemoryFileName()
+ {
+ return string.Format(@"\NVRAM\debugSettings\program{0}-{1}", InitialParametersClass.ApplicationNumber, Key);
+ }
+ }
+
+ public class DebugContextSaveData
+ {
+ public int Level { get; set; }
+ }
}
\ No newline at end of file
diff --git a/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs b/Pepperdash Core/Pepperdash Core/Logging/DebugMemory.cs
similarity index 95%
rename from Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs
rename to Pepperdash Core/Pepperdash Core/Logging/DebugMemory.cs
index 42dbf68..82ad51f 100644
--- a/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs
+++ b/Pepperdash Core/Pepperdash Core/Logging/DebugMemory.cs
@@ -1,58 +1,58 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Crestron.SimplSharp;
-
-using Newtonsoft.Json;
-
-namespace PepperDash.Core.DebugThings
-{
- public class DebugContextCollection
- {
- [JsonProperty("items")]
- Dictionary Items;
-
- public DebugContextCollection()
- {
- Items = new Dictionary();
- }
-
- ///
- /// Sets the level of a given context item, and adds that item if it does not
- /// exist
- ///
- ///
- ///
- /// True if the 0 <= level <= 2 and the conte
- public void SetLevel(string contextKey, int level)
- {
- if (level < 0 || level > 2)
- return;
- GetOrCreateItem(contextKey).Level = level;
- }
-
- ///
- /// Gets a level or creates it if not existing
- ///
- ///
- ///
- public DebugContextItem GetOrCreateItem(string contextKey)
- {
- if (!Items.ContainsKey(contextKey))
- Items[contextKey] = new DebugContextItem(this) { Level = 0 };
- return Items[contextKey];
- }
- }
-
- public class DebugContextItem
- {
- [JsonProperty("level")]
- public int Level { get; set; }
-
- public DebugContextItem(DebugContextCollection parent)
- {
-
- }
- }
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Crestron.SimplSharp;
+
+using Newtonsoft.Json;
+
+namespace PepperDash.Core.DebugThings
+{
+ public class DebugContextCollection
+ {
+ [JsonProperty("items")]
+ Dictionary Items;
+
+ public DebugContextCollection()
+ {
+ Items = new Dictionary();
+ }
+
+ ///
+ /// Sets the level of a given context item, and adds that item if it does not
+ /// exist
+ ///
+ ///
+ ///
+ /// True if the 0 <= level <= 2 and the conte
+ public void SetLevel(string contextKey, int level)
+ {
+ if (level < 0 || level > 2)
+ return;
+ GetOrCreateItem(contextKey).Level = level;
+ }
+
+ ///
+ /// Gets a level or creates it if not existing
+ ///
+ ///
+ ///
+ public DebugContextItem GetOrCreateItem(string contextKey)
+ {
+ if (!Items.ContainsKey(contextKey))
+ Items[contextKey] = new DebugContextItem(this) { Level = 0 };
+ return Items[contextKey];
+ }
+ }
+
+ public class DebugContextItem
+ {
+ [JsonProperty("level")]
+ public int Level { get; set; }
+
+ public DebugContextItem(DebugContextCollection parent)
+ {
+
+ }
+ }
}
\ No newline at end of file
diff --git a/Pepperdash Core/Pepperdash Core/PepperDash_Core.csproj b/Pepperdash Core/Pepperdash Core/PepperDash_Core.csproj
index 4506190..619347b 100644
--- a/Pepperdash Core/Pepperdash Core/PepperDash_Core.csproj
+++ b/Pepperdash Core/Pepperdash Core/PepperDash_Core.csproj
@@ -74,9 +74,9 @@
-
-
-
+
+
+
diff --git a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo
index 7cd9995..dd3589e 100644
Binary files a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo and b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo differ
diff --git a/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs b/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs
index 1d473e8..b23d9ad 100644
--- a/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs
+++ b/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs
@@ -3,6 +3,5 @@
[assembly: AssemblyTitle("Pepperdash_Core")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Pepperdash_Core")]
-[assembly: AssemblyCopyright("Copyright © 2016")]
-[assembly: AssemblyVersion("1.0.*")]
-
+[assembly: AssemblyCopyright("Copyright © PepperDash 2016")]
+[assembly: AssemblyVersion("1.0.1.*")]
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2016-12-29 13-56-10).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2016-12-29 13-56-10).log
deleted file mode 100644
index b986c42..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2016-12-29 13-56-10).log
+++ /dev/null
@@ -1,11 +0,0 @@
-12/29/2016 1:56:10 PM, Info: Initializing SIMPLSharp Services...
-12/29/2016 1:56:10 PM, Info: ProjectInfo successfully initialized.
-12/29/2016 2:14:42 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-12/29/2016 2:14:42 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-12/29/2016 2:14:42 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-12/29/2016 2:14:43 PM, Info: Saving project information...
-12/29/2016 2:16:45 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-12/29/2016 2:16:46 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-12/29/2016 2:16:46 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-12/29/2016 2:16:46 PM, Info: Saving project information...
-1/3/2017 2:45:48 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-30-31).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-30-31).log
deleted file mode 100644
index c324e72..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-30-31).log
+++ /dev/null
@@ -1,3 +0,0 @@
-1/3/2017 3:30:31 PM, Info: Initializing SIMPLSharp Services...
-1/3/2017 3:30:32 PM, Info: ProjectInfo successfully initialized.
-1/3/2017 3:33:21 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-34-10).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-34-10).log
deleted file mode 100644
index 8049ac6..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-03 15-34-10).log
+++ /dev/null
@@ -1,7 +0,0 @@
-1/3/2017 3:34:10 PM, Info: Initializing SIMPLSharp Services...
-1/3/2017 3:34:10 PM, Info: ProjectInfo successfully initialized.
-1/3/2017 3:35:44 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/3/2017 3:35:44 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/3/2017 3:35:44 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/3/2017 3:35:45 PM, Info: Saving project information...
-1/3/2017 4:32:09 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 09-38-26).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 09-38-26).log
deleted file mode 100644
index fe6721e..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 09-38-26).log
+++ /dev/null
@@ -1,29 +0,0 @@
-1/4/2017 9:38:26 AM, Info: Initializing SIMPLSharp Services...
-1/4/2017 9:38:27 AM, Info: ProjectInfo successfully initialized.
-1/4/2017 9:48:06 AM, Info: Saving project information...
-1/4/2017 9:48:06 AM, Info: Saving project information...
-1/4/2017 9:50:00 AM, Info: Saving project information...
-1/4/2017 9:50:00 AM, Info: Saving project information...
-1/4/2017 9:50:00 AM, Info: Saving project information...
-1/4/2017 9:50:00 AM, Info: Saving project information...
-1/4/2017 9:50:01 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 9:50:02 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 9:50:02 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 9:50:02 AM, Info: Saving project information...
-1/4/2017 10:37:54 AM, Info: Saving project information...
-1/4/2017 10:37:54 AM, Info: Saving project information...
-1/4/2017 10:37:54 AM, Info: Saving project information...
-1/4/2017 10:37:54 AM, Info: Saving project information...
-1/4/2017 10:37:54 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 10:37:55 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 10:37:55 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 10:37:55 AM, Info: Saving project information...
-1/4/2017 10:44:01 AM, Info: Saving project information...
-1/4/2017 10:44:01 AM, Info: Saving project information...
-1/4/2017 10:44:01 AM, Info: Saving project information...
-1/4/2017 10:44:01 AM, Info: Saving project information...
-1/4/2017 10:44:02 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 10:44:02 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 10:44:02 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 10:44:03 AM, Info: Saving project information...
-1/4/2017 11:06:47 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 12-35-17).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 12-35-17).log
deleted file mode 100644
index 628014d..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-04 12-35-17).log
+++ /dev/null
@@ -1,39 +0,0 @@
-1/4/2017 12:35:17 PM, Info: Initializing SIMPLSharp Services...
-1/4/2017 12:35:17 PM, Info: ProjectInfo successfully initialized.
-1/4/2017 12:43:03 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 12:43:04 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 12:43:04 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 12:43:04 PM, Info: Saving project information...
-1/4/2017 1:50:06 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 1:50:06 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 1:50:06 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 1:50:06 PM, Info: Saving project information...
-1/4/2017 1:55:36 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 1:55:36 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 1:55:36 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 1:55:36 PM, Info: Saving project information...
-1/4/2017 1:58:48 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 1:58:48 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 1:58:48 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 1:58:48 PM, Info: Saving project information...
-1/4/2017 2:00:00 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 2:00:01 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 2:00:01 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 2:00:01 PM, Info: Saving project information...
-1/4/2017 2:00:10 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 2:00:11 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 2:00:11 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 2:00:11 PM, Info: Saving project information...
-1/4/2017 2:00:32 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 2:00:32 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 2:00:32 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 2:00:33 PM, Info: Saving project information...
-1/4/2017 2:18:17 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 2:18:18 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 2:18:18 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 2:18:18 PM, Info: Saving project information...
-1/4/2017 2:31:43 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/4/2017 2:31:43 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/4/2017 2:31:43 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/4/2017 2:31:44 PM, Info: Saving project information...
-1/4/2017 2:41:56 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-05 15-16-49).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-05 15-16-49).log
deleted file mode 100644
index b027552..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-05 15-16-49).log
+++ /dev/null
@@ -1,3 +0,0 @@
-1/5/2017 3:16:49 PM, Info: Initializing SIMPLSharp Services...
-1/5/2017 3:16:49 PM, Info: ProjectInfo successfully initialized.
-1/5/2017 4:00:40 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-06 07-51-29).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-06 07-51-29).log
deleted file mode 100644
index cf6c86b..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-06 07-51-29).log
+++ /dev/null
@@ -1,45 +0,0 @@
-1/6/2017 7:51:29 AM, Info: Initializing SIMPLSharp Services...
-1/6/2017 7:51:29 AM, Info: ProjectInfo successfully initialized.
-1/6/2017 7:56:04 AM, Info: Saving project information...
-1/6/2017 7:56:04 AM, Info: Saving project information...
-1/6/2017 8:01:04 AM, Info: Saving project information...
-1/6/2017 8:01:04 AM, Info: Saving project information...
-1/6/2017 8:06:04 AM, Info: Saving project information...
-1/6/2017 8:06:04 AM, Info: Saving project information...
-1/6/2017 8:11:04 AM, Info: Saving project information...
-1/6/2017 8:11:04 AM, Info: Saving project information...
-1/6/2017 8:16:04 AM, Info: Saving project information...
-1/6/2017 8:16:04 AM, Info: Saving project information...
-1/6/2017 8:21:04 AM, Info: Saving project information...
-1/6/2017 8:21:04 AM, Info: Saving project information...
-1/6/2017 8:26:04 AM, Info: Saving project information...
-1/6/2017 8:26:04 AM, Info: Saving project information...
-1/6/2017 8:31:04 AM, Info: Saving project information...
-1/6/2017 8:31:04 AM, Info: Saving project information...
-1/6/2017 8:36:04 AM, Info: Saving project information...
-1/6/2017 8:36:04 AM, Info: Saving project information...
-1/6/2017 8:41:04 AM, Info: Saving project information...
-1/6/2017 8:41:04 AM, Info: Saving project information...
-1/6/2017 8:42:25 AM, Info: Saving project information...
-1/6/2017 8:42:25 AM, Info: Saving project information...
-1/6/2017 8:42:25 AM, Info: Saving project information...
-1/6/2017 8:42:25 AM, Info: Saving project information...
-1/6/2017 8:42:37 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/6/2017 8:42:38 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/6/2017 8:42:38 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/6/2017 8:42:38 AM, Info: Saving project information...
-1/6/2017 8:43:40 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/6/2017 8:43:41 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/6/2017 8:43:41 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/6/2017 8:43:41 AM, Info: Saving project information...
-1/6/2017 8:51:04 AM, Info: Saving project information...
-1/6/2017 8:51:04 AM, Info: Saving project information...
-1/6/2017 8:53:45 AM, Info: Saving project information...
-1/6/2017 8:53:45 AM, Info: Saving project information...
-1/6/2017 8:53:45 AM, Info: Saving project information...
-1/6/2017 8:53:45 AM, Info: Saving project information...
-1/6/2017 8:53:46 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/6/2017 8:53:46 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/6/2017 8:53:46 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/6/2017 8:53:47 AM, Info: Saving project information...
-1/6/2017 12:09:25 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-11 14-54-45).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-11 14-54-45).log
deleted file mode 100644
index 7895b6b..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-11 14-54-45).log
+++ /dev/null
@@ -1,11 +0,0 @@
-1/11/2017 2:54:45 PM, Info: Initializing SIMPLSharp Services...
-1/11/2017 2:54:46 PM, Info: ProjectInfo successfully initialized.
-1/11/2017 3:07:48 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/11/2017 3:07:48 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/11/2017 3:07:48 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/11/2017 3:07:49 PM, Info: Saving project information...
-1/11/2017 3:24:24 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-1/11/2017 3:24:24 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-1/11/2017 3:24:24 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-1/11/2017 3:24:25 PM, Info: Saving project information...
-1/11/2017 4:49:12 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-24 10-34-11).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-24 10-34-11).log
deleted file mode 100644
index e9ade86..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-01-24 10-34-11).log
+++ /dev/null
@@ -1,3 +0,0 @@
-1/24/2017 10:34:11 AM, Info: Initializing SIMPLSharp Services...
-1/24/2017 10:34:11 AM, Info: ProjectInfo successfully initialized.
-1/24/2017 1:02:44 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-09 14-54-30).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-09 14-54-30).log
deleted file mode 100644
index f8dbc56..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-09 14-54-30).log
+++ /dev/null
@@ -1,3 +0,0 @@
-2/9/2017 2:54:30 PM, Info: Initializing SIMPLSharp Services...
-2/9/2017 2:54:30 PM, Info: ProjectInfo successfully initialized.
-2/9/2017 2:55:59 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-10 11-04-32).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-10 11-04-32).log
deleted file mode 100644
index 701f928..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-10 11-04-32).log
+++ /dev/null
@@ -1,3 +0,0 @@
-2/10/2017 11:04:32 AM, Info: Initializing SIMPLSharp Services...
-2/10/2017 11:04:32 AM, Info: ProjectInfo successfully initialized.
-2/10/2017 1:09:48 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 08-30-12).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 08-30-12).log
deleted file mode 100644
index 5fd29c0..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 08-30-12).log
+++ /dev/null
@@ -1,3 +0,0 @@
-2/13/2017 8:30:12 AM, Info: Initializing SIMPLSharp Services...
-2/13/2017 8:30:12 AM, Info: ProjectInfo successfully initialized.
-2/13/2017 9:48:40 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 13-07-49).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 13-07-49).log
deleted file mode 100644
index 05c7af7..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 13-07-49).log
+++ /dev/null
@@ -1,11 +0,0 @@
-2/13/2017 1:07:49 PM, Info: Initializing SIMPLSharp Services...
-2/13/2017 1:07:49 PM, Info: ProjectInfo successfully initialized.
-2/13/2017 1:50:03 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/13/2017 1:50:03 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/13/2017 1:50:04 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/13/2017 1:50:04 PM, Info: Saving project information...
-2/13/2017 2:06:06 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/13/2017 2:06:06 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/13/2017 2:06:07 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/13/2017 2:06:07 PM, Info: Saving project information...
-2/13/2017 2:12:55 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 16-41-29).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 16-41-29).log
deleted file mode 100644
index 595e740..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-13 16-41-29).log
+++ /dev/null
@@ -1,3 +0,0 @@
-2/13/2017 4:41:29 PM, Info: Initializing SIMPLSharp Services...
-2/13/2017 4:41:29 PM, Info: ProjectInfo successfully initialized.
-2/13/2017 5:29:14 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-07-21).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-07-21).log
deleted file mode 100644
index 43dc649..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-07-21).log
+++ /dev/null
@@ -1,29 +0,0 @@
-2/15/2017 4:07:21 PM, Info: Initializing SIMPLSharp Services...
-2/15/2017 4:07:21 PM, Info: ProjectInfo successfully initialized.
-2/15/2017 4:07:49 PM, Info: Saving project information...
-2/15/2017 4:07:49 PM, Info: Saving project information...
-2/15/2017 4:07:49 PM, Info: Saving project information...
-2/15/2017 4:07:49 PM, Info: Saving project information...
-2/15/2017 4:07:51 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/15/2017 4:07:51 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/15/2017 4:07:52 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/15/2017 4:07:52 PM, Info: Saving project information...
-2/15/2017 4:08:11 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/15/2017 4:08:11 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/15/2017 4:08:11 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/15/2017 4:08:11 PM, Info: Saving project information...
-2/15/2017 4:08:45 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/15/2017 4:08:45 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/15/2017 4:08:45 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/15/2017 4:08:46 PM, Info: Saving project information...
-2/15/2017 4:12:17 PM, Info: Saving project information...
-2/15/2017 4:12:17 PM, Info: Saving project information...
-2/15/2017 4:15:10 PM, Info: Saving project information...
-2/15/2017 4:15:10 PM, Info: Saving project information...
-2/15/2017 4:15:10 PM, Info: Saving project information...
-2/15/2017 4:15:10 PM, Info: Saving project information...
-2/15/2017 4:15:11 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/15/2017 4:15:11 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/15/2017 4:15:11 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/15/2017 4:15:12 PM, Info: Saving project information...
-2/15/2017 4:16:08 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-28-49).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-28-49).log
deleted file mode 100644
index 25a72e3..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-15 16-28-49).log
+++ /dev/null
@@ -1,11 +0,0 @@
-2/15/2017 4:28:49 PM, Info: Initializing SIMPLSharp Services...
-2/15/2017 4:28:49 PM, Info: ProjectInfo successfully initialized.
-2/15/2017 4:30:33 PM, Info: Saving project information...
-2/15/2017 4:30:33 PM, Info: Saving project information...
-2/15/2017 4:30:33 PM, Info: Saving project information...
-2/15/2017 4:30:33 PM, Info: Saving project information...
-2/15/2017 4:30:35 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/15/2017 4:30:35 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/15/2017 4:30:35 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/15/2017 4:30:36 PM, Info: Saving project information...
-2/15/2017 5:05:01 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-16 08-22-09).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-16 08-22-09).log
deleted file mode 100644
index 89b76ad..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-16 08-22-09).log
+++ /dev/null
@@ -1,15 +0,0 @@
-2/16/2017 8:22:09 AM, Info: Initializing SIMPLSharp Services...
-2/16/2017 8:22:09 AM, Info: ProjectInfo successfully initialized.
-2/16/2017 8:48:07 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/16/2017 8:48:07 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/16/2017 8:48:08 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/16/2017 8:48:08 AM, Info: Saving project information...
-2/16/2017 8:49:21 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/16/2017 8:49:21 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/16/2017 8:49:21 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/16/2017 8:49:22 AM, Info: Saving project information...
-2/16/2017 10:06:57 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/16/2017 10:06:58 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/16/2017 10:06:58 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/16/2017 10:06:58 AM, Info: Saving project information...
-2/16/2017 11:15:30 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-21 13-03-05).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-21 13-03-05).log
deleted file mode 100644
index 9884592..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-21 13-03-05).log
+++ /dev/null
@@ -1,29 +0,0 @@
-2/21/2017 1:03:05 PM, Info: Initializing SIMPLSharp Services...
-2/21/2017 1:03:05 PM, Info: ProjectInfo successfully initialized.
-2/21/2017 1:07:59 PM, Info: Saving project information...
-2/21/2017 1:07:59 PM, Info: Saving project information...
-2/21/2017 1:08:34 PM, Info: Saving project information...
-2/21/2017 1:08:34 PM, Info: Saving project information...
-2/21/2017 1:08:34 PM, Info: Saving project information...
-2/21/2017 1:08:34 PM, Info: Saving project information...
-2/21/2017 1:08:36 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/21/2017 1:08:37 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/21/2017 1:08:37 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/21/2017 1:08:38 PM, Info: Saving project information...
-2/21/2017 1:10:56 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/21/2017 1:10:56 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/21/2017 1:10:56 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/21/2017 1:10:56 PM, Info: Saving project information...
-2/21/2017 1:18:40 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/21/2017 1:18:41 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/21/2017 1:18:41 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/21/2017 1:18:41 PM, Info: Saving project information...
-2/21/2017 2:28:05 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/21/2017 2:28:06 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/21/2017 2:28:06 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/21/2017 2:28:06 PM, Info: Saving project information...
-2/21/2017 2:28:40 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/21/2017 2:28:40 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/21/2017 2:28:40 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/21/2017 2:28:40 PM, Info: Saving project information...
-2/21/2017 4:31:01 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log
deleted file mode 100644
index ef7c721..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log
+++ /dev/null
@@ -1,15 +0,0 @@
-2/27/2017 9:50:31 AM, Info: Initializing SIMPLSharp Services...
-2/27/2017 9:50:32 AM, Info: ProjectInfo successfully initialized.
-2/27/2017 10:11:04 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/27/2017 10:11:04 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/27/2017 10:11:05 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/27/2017 10:11:05 AM, Info: Saving project information...
-2/27/2017 10:11:36 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/27/2017 10:11:36 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/27/2017 10:11:36 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/27/2017 10:11:37 AM, Info: Saving project information...
-2/27/2017 10:20:01 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/27/2017 10:20:01 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/27/2017 10:20:01 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/27/2017 10:20:01 AM, Info: Saving project information...
-2/27/2017 1:27:24 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log
deleted file mode 100644
index 28c06f9..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log
+++ /dev/null
@@ -1,11 +0,0 @@
-2/27/2017 12:03:59 PM, Info: Initializing SIMPLSharp Services...
-2/27/2017 12:03:59 PM, Info: ProjectInfo successfully initialized.
-2/27/2017 12:04:26 PM, Info: Saving project information...
-2/27/2017 12:04:26 PM, Info: Saving project information...
-2/27/2017 12:04:26 PM, Info: Saving project information...
-2/27/2017 12:04:26 PM, Info: Saving project information...
-2/27/2017 12:04:27 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-2/27/2017 12:04:27 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-2/27/2017 12:04:27 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-2/27/2017 12:04:28 PM, Info: Saving project information...
-2/27/2017 1:27:24 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 15-37-03).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 15-37-03).log
deleted file mode 100644
index b74a243..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 15-37-03).log
+++ /dev/null
@@ -1,67 +0,0 @@
-2/28/2017 3:37:03 PM, Info: Initializing SIMPLSharp Services...
-2/28/2017 3:37:03 PM, Info: ProjectInfo successfully initialized.
-2/28/2017 3:41:39 PM, Info: Saving project information...
-2/28/2017 3:41:39 PM, Info: Saving project information...
-2/28/2017 3:46:39 PM, Info: Saving project information...
-2/28/2017 3:46:39 PM, Info: Saving project information...
-2/28/2017 3:51:39 PM, Info: Saving project information...
-2/28/2017 3:51:39 PM, Info: Saving project information...
-2/28/2017 3:56:39 PM, Info: Saving project information...
-2/28/2017 3:56:39 PM, Info: Saving project information...
-2/28/2017 4:01:39 PM, Info: Saving project information...
-2/28/2017 4:01:39 PM, Info: Saving project information...
-2/28/2017 4:06:39 PM, Info: Saving project information...
-2/28/2017 4:06:39 PM, Info: Saving project information...
-2/28/2017 4:11:39 PM, Info: Saving project information...
-2/28/2017 4:11:39 PM, Info: Saving project information...
-2/28/2017 4:16:39 PM, Info: Saving project information...
-2/28/2017 4:16:39 PM, Info: Saving project information...
-2/28/2017 4:21:39 PM, Info: Saving project information...
-2/28/2017 4:21:39 PM, Info: Saving project information...
-2/28/2017 4:26:39 PM, Info: Saving project information...
-2/28/2017 4:26:39 PM, Info: Saving project information...
-2/28/2017 4:31:39 PM, Info: Saving project information...
-2/28/2017 4:31:39 PM, Info: Saving project information...
-2/28/2017 4:36:39 PM, Info: Saving project information...
-2/28/2017 4:36:39 PM, Info: Saving project information...
-2/28/2017 4:41:39 PM, Info: Saving project information...
-2/28/2017 4:41:39 PM, Info: Saving project information...
-2/28/2017 4:46:39 PM, Info: Saving project information...
-2/28/2017 4:46:39 PM, Info: Saving project information...
-2/28/2017 4:51:39 PM, Info: Saving project information...
-2/28/2017 4:51:39 PM, Info: Saving project information...
-2/28/2017 4:56:39 PM, Info: Saving project information...
-2/28/2017 4:56:39 PM, Info: Saving project information...
-2/28/2017 5:01:39 PM, Info: Saving project information...
-2/28/2017 5:01:39 PM, Info: Saving project information...
-2/28/2017 5:06:39 PM, Info: Saving project information...
-2/28/2017 5:06:39 PM, Info: Saving project information...
-2/28/2017 5:11:39 PM, Info: Saving project information...
-2/28/2017 5:11:39 PM, Info: Saving project information...
-2/28/2017 5:16:39 PM, Info: Saving project information...
-2/28/2017 5:16:39 PM, Info: Saving project information...
-2/28/2017 5:21:39 PM, Info: Saving project information...
-2/28/2017 5:21:39 PM, Info: Saving project information...
-2/28/2017 5:26:39 PM, Info: Saving project information...
-2/28/2017 5:26:39 PM, Info: Saving project information...
-2/28/2017 5:31:39 PM, Info: Saving project information...
-2/28/2017 5:31:39 PM, Info: Saving project information...
-2/28/2017 5:36:39 PM, Info: Saving project information...
-2/28/2017 5:36:39 PM, Info: Saving project information...
-2/28/2017 5:41:39 PM, Info: Saving project information...
-2/28/2017 5:41:39 PM, Info: Saving project information...
-2/28/2017 5:46:39 PM, Info: Saving project information...
-2/28/2017 5:46:39 PM, Info: Saving project information...
-2/28/2017 5:51:39 PM, Info: Saving project information...
-2/28/2017 5:51:39 PM, Info: Saving project information...
-2/28/2017 5:56:39 PM, Info: Saving project information...
-2/28/2017 5:56:39 PM, Info: Saving project information...
-2/28/2017 6:01:39 PM, Info: Saving project information...
-2/28/2017 6:01:39 PM, Info: Saving project information...
-2/28/2017 6:06:39 PM, Info: Saving project information...
-2/28/2017 6:06:39 PM, Info: Saving project information...
-2/28/2017 6:11:39 PM, Info: Saving project information...
-2/28/2017 6:11:39 PM, Info: Saving project information...
-2/28/2017 6:16:39 PM, Info: Saving project information...
-2/28/2017 6:16:39 PM, Info: Saving project information...
-2/28/2017 6:20:39 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 23-59-56).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 23-59-56).log
deleted file mode 100644
index 39d88d4..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-28 23-59-56).log
+++ /dev/null
@@ -1,3 +0,0 @@
-2/28/2017 11:59:56 PM, Info: Initializing SIMPLSharp Services...
-2/28/2017 11:59:56 PM, Info: ProjectInfo successfully initialized.
-3/2/2017 1:03:52 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log
deleted file mode 100644
index 801a375..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log
+++ /dev/null
@@ -1,15 +0,0 @@
-3/2/2017 8:11:51 AM, Info: Initializing SIMPLSharp Services...
-3/2/2017 8:11:51 AM, Info: ProjectInfo successfully initialized.
-3/2/2017 8:56:43 AM, Info: Saving project information...
-3/2/2017 8:56:43 AM, Info: Saving project information...
-3/2/2017 9:01:43 AM, Info: Saving project information...
-3/2/2017 9:01:43 AM, Info: Saving project information...
-3/2/2017 9:01:51 AM, Info: Saving project information...
-3/2/2017 9:01:51 AM, Info: Saving project information...
-3/2/2017 9:01:51 AM, Info: Saving project information...
-3/2/2017 9:01:51 AM, Info: Saving project information...
-3/2/2017 9:01:53 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-3/2/2017 9:01:53 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-3/2/2017 9:01:53 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-3/2/2017 9:01:54 AM, Info: Saving project information...
-3/2/2017 9:12:03 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log
deleted file mode 100644
index 6c064af..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/2/2017 9:35:18 AM, Info: Initializing SIMPLSharp Services...
-3/2/2017 9:35:18 AM, Info: ProjectInfo successfully initialized.
-3/2/2017 9:52:20 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log
deleted file mode 100644
index 586c171..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/2/2017 9:50:44 AM, Info: Initializing SIMPLSharp Services...
-3/2/2017 9:50:44 AM, Info: ProjectInfo successfully initialized.
-3/2/2017 9:52:20 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 00-07-38).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 00-07-38).log
deleted file mode 100644
index b656452..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 00-07-38).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/3/2017 12:07:38 AM, Info: Initializing SIMPLSharp Services...
-3/3/2017 12:07:38 AM, Info: ProjectInfo successfully initialized.
-3/3/2017 1:09:41 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 20-17-06).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 20-17-06).log
deleted file mode 100644
index 0c7854b..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 20-17-06).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/3/2017 8:17:06 PM, Info: Initializing SIMPLSharp Services...
-3/3/2017 8:17:06 PM, Info: ProjectInfo successfully initialized.
-3/3/2017 8:27:24 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-03-55).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-03-55).log
deleted file mode 100644
index d21fad5..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-03-55).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/3/2017 9:03:55 PM, Info: Initializing SIMPLSharp Services...
-3/3/2017 9:03:55 PM, Info: ProjectInfo successfully initialized.
-3/3/2017 9:06:43 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-07-02).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-07-02).log
deleted file mode 100644
index 0b0c207..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-03 21-07-02).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/3/2017 9:07:02 PM, Info: Initializing SIMPLSharp Services...
-3/3/2017 9:07:02 PM, Info: ProjectInfo successfully initialized.
-3/4/2017 11:03:40 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-06 16-15-17).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-06 16-15-17).log
deleted file mode 100644
index 5b011a5..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-06 16-15-17).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/6/2017 4:15:17 PM, Info: Initializing SIMPLSharp Services...
-3/6/2017 4:15:18 PM, Info: ProjectInfo successfully initialized.
-3/7/2017 11:02:41 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-07 11-30-02).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-07 11-30-02).log
deleted file mode 100644
index e7713ef..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-07 11-30-02).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/7/2017 11:30:02 AM, Info: Initializing SIMPLSharp Services...
-3/7/2017 11:30:02 AM, Info: ProjectInfo successfully initialized.
-3/7/2017 2:27:46 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-08 10-36-13).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-08 10-36-13).log
deleted file mode 100644
index bab6603..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-08 10-36-13).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/8/2017 10:36:13 AM, Info: Initializing SIMPLSharp Services...
-3/8/2017 10:36:13 AM, Info: ProjectInfo successfully initialized.
-3/8/2017 5:47:06 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log
deleted file mode 100644
index 9544c37..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/13/2017 12:52:45 PM, Info: Initializing SIMPLSharp Services...
-3/13/2017 12:52:45 PM, Info: ProjectInfo successfully initialized.
-3/13/2017 2:48:37 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log
deleted file mode 100644
index 4adad99..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log
+++ /dev/null
@@ -1,11 +0,0 @@
-3/19/2017 8:16:46 PM, Info: Initializing SIMPLSharp Services...
-3/19/2017 8:16:46 PM, Info: ProjectInfo successfully initialized.
-3/19/2017 8:16:59 PM, Info: Saving project information...
-3/19/2017 8:17:00 PM, Info: Saving project information...
-3/19/2017 8:17:00 PM, Info: Saving project information...
-3/19/2017 8:17:00 PM, Info: Saving project information...
-3/19/2017 8:17:02 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-3/19/2017 8:17:02 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-3/19/2017 8:17:02 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-3/19/2017 8:17:03 PM, Info: Saving project information...
-3/19/2017 8:17:07 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-20 15-36-05).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-20 15-36-05).log
deleted file mode 100644
index 377ba1a..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-20 15-36-05).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/20/2017 3:36:05 PM, Info: Initializing SIMPLSharp Services...
-3/20/2017 3:36:05 PM, Info: ProjectInfo successfully initialized.
-3/20/2017 3:37:16 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-02).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-02).log
deleted file mode 100644
index 978b591..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-02).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/21/2017 8:57:02 AM, Info: Initializing SIMPLSharp Services...
-3/21/2017 8:57:02 AM, Info: ProjectInfo successfully initialized.
-3/21/2017 8:57:05 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-40).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-40).log
deleted file mode 100644
index fdfd959..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 08-57-40).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/21/2017 8:57:40 AM, Info: Initializing SIMPLSharp Services...
-3/21/2017 8:57:40 AM, Info: ProjectInfo successfully initialized.
-3/21/2017 9:45:31 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-42-53).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-42-53).log
deleted file mode 100644
index 107bf29..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-42-53).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/21/2017 12:42:53 PM, Info: Initializing SIMPLSharp Services...
-3/21/2017 12:42:54 PM, Info: ProjectInfo successfully initialized.
-3/21/2017 12:44:01 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-55-35).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-55-35).log
deleted file mode 100644
index b60eedf..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 12-55-35).log
+++ /dev/null
@@ -1,11 +0,0 @@
-3/21/2017 12:55:35 PM, Info: Initializing SIMPLSharp Services...
-3/21/2017 12:55:36 PM, Info: ProjectInfo successfully initialized.
-3/21/2017 12:55:59 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-3/21/2017 12:56:00 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-3/21/2017 12:56:00 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-3/21/2017 12:56:00 PM, Info: Saving project information...
-3/21/2017 1:03:04 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-3/21/2017 1:03:04 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-3/21/2017 1:03:04 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-3/21/2017 1:03:04 PM, Info: Saving project information...
-3/21/2017 1:03:08 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 13-09-34).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 13-09-34).log
deleted file mode 100644
index 5b0e20d..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-21 13-09-34).log
+++ /dev/null
@@ -1,7 +0,0 @@
-3/21/2017 1:09:34 PM, Info: Initializing SIMPLSharp Services...
-3/21/2017 1:09:34 PM, Info: ProjectInfo successfully initialized.
-3/21/2017 1:09:59 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-3/21/2017 1:09:59 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-3/21/2017 1:10:00 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-3/21/2017 1:10:00 PM, Info: Saving project information...
-3/21/2017 1:14:17 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-30 10-52-00).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-30 10-52-00).log
deleted file mode 100644
index b06bef1..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-30 10-52-00).log
+++ /dev/null
@@ -1,3 +0,0 @@
-3/30/2017 10:52:00 AM, Info: Initializing SIMPLSharp Services...
-3/30/2017 10:52:00 AM, Info: ProjectInfo successfully initialized.
-3/30/2017 11:31:42 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-27-13).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-27-13).log
deleted file mode 100644
index e509c52..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-27-13).log
+++ /dev/null
@@ -1,11 +0,0 @@
-4/27/2017 2:27:13 PM, Info: Initializing SIMPLSharp Services...
-4/27/2017 2:27:13 PM, Info: ProjectInfo successfully initialized.
-4/27/2017 2:47:36 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/27/2017 2:47:37 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/27/2017 2:47:37 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/27/2017 2:47:38 PM, Info: Saving project information...
-4/27/2017 2:51:45 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/27/2017 2:51:45 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/27/2017 2:51:45 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/27/2017 2:51:45 PM, Info: Saving project information...
-4/27/2017 2:54:30 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-54-38).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-54-38).log
deleted file mode 100644
index 31ae83e..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-27 14-54-38).log
+++ /dev/null
@@ -1,15 +0,0 @@
-4/27/2017 2:54:38 PM, Info: Initializing SIMPLSharp Services...
-4/27/2017 2:54:38 PM, Info: ProjectInfo successfully initialized.
-4/27/2017 2:54:56 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/27/2017 2:54:56 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/27/2017 2:54:56 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/27/2017 2:54:57 PM, Info: Saving project information...
-4/27/2017 2:55:19 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/27/2017 2:55:19 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/27/2017 2:55:19 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/27/2017 2:55:20 PM, Info: Saving project information...
-4/27/2017 3:03:20 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/27/2017 3:03:20 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/27/2017 3:03:21 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/27/2017 3:03:21 PM, Info: Saving project information...
-4/27/2017 3:22:09 PM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-28 10-33-21).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-28 10-33-21).log
deleted file mode 100644
index eb611d0..0000000
--- a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-04-28 10-33-21).log
+++ /dev/null
@@ -1,19 +0,0 @@
-4/28/2017 10:33:21 AM, Info: Initializing SIMPLSharp Services...
-4/28/2017 10:33:21 AM, Info: ProjectInfo successfully initialized.
-4/28/2017 10:33:24 AM, Info: Saving project information...
-4/28/2017 10:33:24 AM, Info: Saving project information...
-4/28/2017 10:33:24 AM, Info: Saving project information...
-4/28/2017 10:33:24 AM, Info: Saving project information...
-4/28/2017 10:33:26 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/28/2017 10:33:26 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/28/2017 10:33:26 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/28/2017 10:33:27 AM, Info: Saving project information...
-4/28/2017 10:38:52 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/28/2017 10:38:52 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/28/2017 10:38:52 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/28/2017 10:38:53 AM, Info: Saving project information...
-4/28/2017 11:01:37 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll...
-4/28/2017 11:01:37 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-4/28/2017 11:01:37 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz...
-4/28/2017 11:01:37 AM, Info: Saving project information...
-4/28/2017 11:10:16 AM, Info: Terminating SIMPLSharp Services
diff --git a/Pepperdash Core/Pepperdash Core/bin/Newtonsoft.Json.Compact.dll b/Pepperdash Core/Pepperdash Core/bin/Newtonsoft.Json.Compact.dll
deleted file mode 100644
index e72180a..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/Newtonsoft.Json.Compact.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config
deleted file mode 100644
index a79e97e..0000000
--- a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
- PepperDash_Core
- PepperDash_Core
- PepperDash_Core
- 1.007.0017
- SIMPL# Plugin
- 5
- 5
-
-
-
- 4/28/2017 11:01:37 AM
- 1.0.6327.18048
-
-
- Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10
-
-
-
\ No newline at end of file
diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll
deleted file mode 100644
index 6f5aa9b..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb
deleted file mode 100644
index 2979fd6..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll
deleted file mode 100644
index 6fd71ec..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpData.dat b/Pepperdash Core/Pepperdash Core/bin/SimplSharpData.dat
deleted file mode 100644
index 30d314c..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpData.dat and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll
deleted file mode 100644
index 78ba937..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll
deleted file mode 100644
index 81103a7..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll
deleted file mode 100644
index edc2f9f..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll
deleted file mode 100644
index 69b6dc7..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/manifest.info b/Pepperdash Core/Pepperdash Core/bin/manifest.info
deleted file mode 100644
index a51a806..0000000
--- a/Pepperdash Core/Pepperdash Core/bin/manifest.info
+++ /dev/null
@@ -1,27 +0,0 @@
-MainAssembly=PepperDash_Core.dll:9f1cd0b9b944788f76ff0b7182bcf3bb
-MainAssemblyMinFirmwareVersion=1.007.0017
-MainAssemblyResource=SimplSharpData.dat:820b61c48c8a2cace82957eed4cc377c
-ü
-DependencySource=Newtonsoft.Json.Compact.dll:ea996aa2ec65aa1878e7c9d09e37a896
-DependencyPath=PepperDash_Core.clz:Newtonsoft.Json.Compact.dll
-DependencyMainAssembly=Newtonsoft.Json.Compact.dll:ea996aa2ec65aa1878e7c9d09e37a896
-ü
-DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9
-DependencyPath=PepperDash_Core.clz:SimplSharpCustomAttributesInterface.dll
-DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9
-ü
-DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd
-DependencyPath=PepperDash_Core.clz:SimplSharpHelperInterface.dll
-DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd
-ü
-DependencySource=SimplSharpNewtonsoft.dll:9c09c5d30daedddf895c36acbface0d5
-DependencyPath=PepperDash_Core.clz:SimplSharpNewtonsoft.dll
-DependencyMainAssembly=SimplSharpNewtonsoft.dll:9c09c5d30daedddf895c36acbface0d5
-ü
-DependencySource=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2
-DependencyPath=PepperDash_Core.clz:SimplSharpReflectionInterface.dll
-DependencyMainAssembly=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2
-ü
-DependencySource=SimplSharpSQLHelperInterface.dll:f0c505ddecd8a783d4b75217501cbb72
-DependencyPath=PepperDash_Core.clz:SimplSharpSQLHelperInterface.dll
-DependencyMainAssembly=SimplSharpSQLHelperInterface.dll:f0c505ddecd8a783d4b75217501cbb72
diff --git a/Pepperdash Core/Pepperdash Core/bin/manifest.ser b/Pepperdash Core/Pepperdash Core/bin/manifest.ser
deleted file mode 100644
index 19f1acd..0000000
Binary files a/Pepperdash Core/Pepperdash Core/bin/manifest.ser and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll
deleted file mode 100644
index 7fd2b0a..0000000
Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb
deleted file mode 100644
index 7d04f7e..0000000
Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/Pepperdash_Core.csproj.FileListAbsolute.txt b/Pepperdash Core/Pepperdash Core/obj/Debug/Pepperdash_Core.csproj.FileListAbsolute.txt
deleted file mode 100644
index 9ccd0f8..0000000
--- a/Pepperdash Core/Pepperdash Core/obj/Debug/Pepperdash_Core.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.pdb
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpCustomAttributesInterface.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpHelperInterface.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpNewtonsoft.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpSQLHelperInterface.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpReflectionInterface.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\ResolveAssemblyReference.cache
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.dll
-C:\Users\hvolm\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.pdb
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.pdb
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpCustomAttributesInterface.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpHelperInterface.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpNewtonsoft.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpSQLHelperInterface.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpReflectionInterface.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\ResolveAssemblyReference.cache
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.dll
-C:\P\BitBucket\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.pdb
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.pdb
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpCustomAttributesInterface.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpHelperInterface.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpNewtonsoft.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpSQLHelperInterface.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\SimplSharpReflectionInterface.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\ResolveAssemblyReference.cache
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.dll
-C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\obj\Debug\PepperDash_Core.pdb
diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache b/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache
deleted file mode 100644
index f0daa1b..0000000
Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache and /dev/null differ
diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz b/Pepperdash Core/Releases/PepperDash_Core.clz
similarity index 96%
rename from Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz
rename to Pepperdash Core/Releases/PepperDash_Core.clz
index e57a1fc..af596a5 100644
Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz and b/Pepperdash Core/Releases/PepperDash_Core.clz differ
diff --git a/Pepperdash Core/Releases/PepperDash_Core.dll b/Pepperdash Core/Releases/PepperDash_Core.dll
new file mode 100644
index 0000000..f07920d
Binary files /dev/null and b/Pepperdash Core/Releases/PepperDash_Core.dll differ