+ .gitignore; changed name of Debug folder to Logging

This commit is contained in:
Heath Volmer
2017-05-10 09:27:14 -06:00
parent 70685d05b1
commit bb43af25be
70 changed files with 636 additions and 1180 deletions

22
.gitignore vendored Normal file
View File

@@ -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/

Binary file not shown.

View File

@@ -1,299 +1,299 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Crestron.SimplSharp; using Crestron.SimplSharp;
using Crestron.SimplSharp.CrestronLogger; using Crestron.SimplSharp.CrestronLogger;
using Crestron.SimplSharp.CrestronIO; using Crestron.SimplSharp.CrestronIO;
using Newtonsoft.Json; using Newtonsoft.Json;
using PepperDash.Core.DebugThings; using PepperDash.Core.DebugThings;
namespace PepperDash.Core namespace PepperDash.Core
{ {
public static class Debug public static class Debug
{ {
/// <summary> /// <summary>
/// Describes the folder location where a given program stores it's debug level memory. By default, the /// 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. /// file written will be named appNdebug where N is 1-10.
/// </summary> /// </summary>
public static string FilePathPrefix = @"\nvram\debug\"; public static string FilePathPrefix = @"\nvram\debug\";
/// <summary> /// <summary>
/// The name of the file containing the current debug settings. /// The name of the file containing the current debug settings.
/// </summary> /// </summary>
public static string FileName = string.Format(@"app{0}Debug.json", InitialParametersClass.ApplicationNumber); public static string FileName = string.Format(@"app{0}Debug.json", InitialParametersClass.ApplicationNumber);
public static int Level { get; private set; } public static int Level { get; private set; }
static DebugContextCollection Contexts; static DebugContextCollection Contexts;
static int SaveTimeoutMs = 30000; static int SaveTimeoutMs = 30000;
static CTimer SaveTimer; static CTimer SaveTimer;
static Debug() static Debug()
{ {
//CrestronDataStoreStatic.InitCrestronDataStore(); //CrestronDataStoreStatic.InitCrestronDataStore();
if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro) if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
{ {
// Add command to console // Add command to console
CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug", CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
"appdebug:P [0-2]: Sets the application's console debug message level", "appdebug:P [0-2]: Sets the application's console debug message level",
ConsoleAccessLevelEnum.AccessOperator); ConsoleAccessLevelEnum.AccessOperator);
CrestronConsole.AddNewConsoleCommand(ShowDebugLog, "appdebuglog", CrestronConsole.AddNewConsoleCommand(ShowDebugLog, "appdebuglog",
"appdebuglog:P [all] Use \"all\" for full log.", "appdebuglog:P [all] Use \"all\" for full log.",
ConsoleAccessLevelEnum.AccessOperator); ConsoleAccessLevelEnum.AccessOperator);
CrestronConsole.AddNewConsoleCommand(s => CrestronLogger.Clear(false), "appdebugclear", CrestronConsole.AddNewConsoleCommand(s => CrestronLogger.Clear(false), "appdebugclear",
"appdebugclear:P Clears the current custom log", "appdebugclear:P Clears the current custom log",
ConsoleAccessLevelEnum.AccessOperator); ConsoleAccessLevelEnum.AccessOperator);
} }
CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler; CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
LoadMemory(); LoadMemory();
Level = Contexts.GetOrCreateItem("DEFAULT").Level; Level = Contexts.GetOrCreateItem("DEFAULT").Level;
CrestronLogger.Initialize(2, LoggerModeEnum.RM); // Use RM instead of DEFAULT as not to double-up console messages. CrestronLogger.Initialize(2, LoggerModeEnum.RM); // Use RM instead of DEFAULT as not to double-up console messages.
} }
/// <summary> /// <summary>
/// Used to save memory when shutting down /// Used to save memory when shutting down
/// </summary> /// </summary>
/// <param name="programEventType"></param> /// <param name="programEventType"></param>
static void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType) static void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
{ {
if (programEventType == eProgramStatusEventType.Stopping) if (programEventType == eProgramStatusEventType.Stopping)
{ {
if (SaveTimer != null) if (SaveTimer != null)
{ {
SaveTimer.Stop(); SaveTimer.Stop();
SaveTimer = null; SaveTimer = null;
} }
Console(0, "Saving debug settings"); Console(0, "Saving debug settings");
SaveMemory(); SaveMemory();
} }
} }
/// <summary> /// <summary>
/// Callback for console command /// Callback for console command
/// </summary> /// </summary>
/// <param name="levelString"></param> /// <param name="levelString"></param>
public static void SetDebugFromConsole(string levelString) public static void SetDebugFromConsole(string levelString)
{ {
try try
{ {
if (string.IsNullOrEmpty(levelString.Trim())) if (string.IsNullOrEmpty(levelString.Trim()))
{ {
CrestronConsole.PrintLine("AppDebug level = {0}", Level); CrestronConsole.PrintLine("AppDebug level = {0}", Level);
return; return;
} }
SetDebugLevel(Convert.ToInt32(levelString)); SetDebugLevel(Convert.ToInt32(levelString));
} }
catch catch
{ {
CrestronConsole.PrintLine("Usage: appdebug:P [0-2]"); CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
} }
} }
/// <summary> /// <summary>
/// Sets the debug level /// Sets the debug level
/// </summary> /// </summary>
/// <param name="level"> Valid values 0 (no debug), 1 (critical), 2 (all messages)</param> /// <param name="level"> Valid values 0 (no debug), 1 (critical), 2 (all messages)</param>
public static void SetDebugLevel(int level) public static void SetDebugLevel(int level)
{ {
if (level <= 2) if (level <= 2)
{ {
Level = level; Level = level;
Contexts.GetOrCreateItem("DEFAULT").Level = level; Contexts.GetOrCreateItem("DEFAULT").Level = level;
SaveMemoryOnTimeout(); SaveMemoryOnTimeout();
CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}", CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
InitialParametersClass.ApplicationNumber, Level); InitialParametersClass.ApplicationNumber, Level);
//var err = CrestronDataStoreStatic.SetLocalUintValue("DebugLevel", level); //var err = CrestronDataStoreStatic.SetLocalUintValue("DebugLevel", level);
//if (err != CrestronDataStore.CDS_ERROR.CDS_SUCCESS) //if (err != CrestronDataStore.CDS_ERROR.CDS_SUCCESS)
// CrestronConsole.PrintLine("Error saving console debug level setting: {0}", err); // CrestronConsole.PrintLine("Error saving console debug level setting: {0}", err);
} }
} }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public static void ShowDebugLog(string s) public static void ShowDebugLog(string s)
{ {
var loglist = CrestronLogger.PrintTheLog(s.ToLower() == "all"); var loglist = CrestronLogger.PrintTheLog(s.ToLower() == "all");
foreach (var l in loglist) foreach (var l in loglist)
CrestronConsole.ConsoleCommandResponse(l + CrestronEnvironment.NewLine); CrestronConsole.ConsoleCommandResponse(l + CrestronEnvironment.NewLine);
} }
/// <summary> /// <summary>
/// Prints message to console if current debug level is equal to or higher than the level of this message. /// Prints message to console if current debug level is equal to or higher than the level of this message.
/// Uses CrestronConsole.PrintLine. /// Uses CrestronConsole.PrintLine.
/// </summary> /// </summary>
/// <param name="level"></param> /// <param name="level"></param>
/// <param name="format">Console format string</param> /// <param name="format">Console format string</param>
/// <param name="items">Object parameters</param> /// <param name="items">Object parameters</param>
public static void Console(uint level, string format, params object[] items) public static void Console(uint level, string format, params object[] items)
{ {
if (Level >= level) if (Level >= level)
CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
string.Format(format, items)); string.Format(format, items));
} }
/// <summary> /// <summary>
/// Appends a device Key to the beginning of a message /// Appends a device Key to the beginning of a message
/// </summary> /// </summary>
public static void Console(uint level, IKeyed dev, string format, params object[] items) public static void Console(uint level, IKeyed dev, string format, params object[] items)
{ {
if (Level >= level) if (Level >= level)
Console(level, "[{0}] {1}", dev.Key, string.Format(format, items)); Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
} }
public static void Console(uint level, IKeyed dev, ErrorLogLevel errorLogLevel, public static void Console(uint level, IKeyed dev, ErrorLogLevel errorLogLevel,
string format, params object[] items) string format, params object[] items)
{ {
if (Level >= level) if (Level >= level)
{ {
var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items)); var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
Console(level, str); Console(level, str);
LogError(errorLogLevel, str); LogError(errorLogLevel, str);
} }
} }
public static void Console(uint level, ErrorLogLevel errorLogLevel, public static void Console(uint level, ErrorLogLevel errorLogLevel,
string format, params object[] items) string format, params object[] items)
{ {
if (Level >= level) if (Level >= level)
{ {
var str = string.Format(format, items); var str = string.Format(format, items);
Console(level, str); Console(level, str);
LogError(errorLogLevel, str); LogError(errorLogLevel, str);
} }
} }
/// <summary> /// <summary>
/// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at /// 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 /// 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. /// it will only be written to the log.
/// </summary> /// </summary>
/// <param name="level"></param> /// <param name="level"></param>
/// <param name="format"></param> /// <param name="format"></param>
/// <param name="items"></param> /// <param name="items"></param>
public static void ConsoleWithLog(uint level, string format, params object[] items) public static void ConsoleWithLog(uint level, string format, params object[] items)
{ {
var str = string.Format(format, items); var str = string.Format(format, items);
if (Level >= level) if (Level >= level)
CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, str); CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
CrestronLogger.WriteToLog(str, level); CrestronLogger.WriteToLog(str, level);
} }
/// <summary> /// <summary>
/// Logs to both console and the custom user log (not the built-in error log). If appdebug level is set at /// 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 /// 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. /// it will only be written to the log.
/// </summary> /// </summary>
/// <param name="level"></param> /// <param name="level"></param>
/// <param name="dev"></param> /// <param name="dev"></param>
/// <param name="format">String.format string</param> /// <param name="format">String.format string</param>
/// <param name="items">Parameters for substitution in the format string.</param> /// <param name="items">Parameters for substitution in the format string.</param>
public static void ConsoleWithLog(uint level, IKeyed dev, string format, params object[] items) public static void ConsoleWithLog(uint level, IKeyed dev, string format, params object[] items)
{ {
var str = string.Format(format, items); var str = string.Format(format, items);
if (Level >= level) if (Level >= level)
ConsoleWithLog(level, "[{0}] {1}", dev.Key, str); ConsoleWithLog(level, "[{0}] {1}", dev.Key, str);
} }
/// <summary> /// <summary>
/// Prints to log and error log /// Prints to log and error log
/// </summary> /// </summary>
/// <param name="errorLogLevel"></param> /// <param name="errorLogLevel"></param>
/// <param name="str"></param> /// <param name="str"></param>
public static void LogError(ErrorLogLevel errorLogLevel, string str) public static void LogError(ErrorLogLevel errorLogLevel, string str)
{ {
string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str); string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
switch (errorLogLevel) switch (errorLogLevel)
{ {
case ErrorLogLevel.Error: case ErrorLogLevel.Error:
ErrorLog.Error(msg); ErrorLog.Error(msg);
break; break;
case ErrorLogLevel.Warning: case ErrorLogLevel.Warning:
ErrorLog.Warn(msg); ErrorLog.Warn(msg);
break; break;
case ErrorLogLevel.Notice: case ErrorLogLevel.Notice:
ErrorLog.Notice(msg); ErrorLog.Notice(msg);
break; break;
} }
} }
/// <summary> /// <summary>
/// Writes the memory object after timeout /// Writes the memory object after timeout
/// </summary> /// </summary>
static void SaveMemoryOnTimeout() static void SaveMemoryOnTimeout()
{ {
if (SaveTimer == null) if (SaveTimer == null)
SaveTimer = new CTimer(o => SaveTimer = new CTimer(o =>
{ {
SaveTimer = null; SaveTimer = null;
SaveMemory(); SaveMemory();
}, SaveTimeoutMs); }, SaveTimeoutMs);
else else
SaveTimer.Reset(SaveTimeoutMs); SaveTimer.Reset(SaveTimeoutMs);
} }
/// <summary> /// <summary>
/// Writes the memory - use SaveMemoryOnTimeout /// Writes the memory - use SaveMemoryOnTimeout
/// </summary> /// </summary>
static void SaveMemory() static void SaveMemory()
{ {
//var dir = @"\NVRAM\debug"; //var dir = @"\NVRAM\debug";
//if (!Directory.Exists(dir)) //if (!Directory.Exists(dir))
// Directory.Create(dir); // Directory.Create(dir);
using (StreamWriter sw = new StreamWriter(GetMemoryFileName())) using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
{ {
var json = JsonConvert.SerializeObject(Contexts); var json = JsonConvert.SerializeObject(Contexts);
sw.Write(json); sw.Write(json);
sw.Flush(); sw.Flush();
} }
} }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
static void LoadMemory() static void LoadMemory()
{ {
var file = GetMemoryFileName(); var file = GetMemoryFileName();
if (File.Exists(file)) if (File.Exists(file))
{ {
using (StreamReader sr = new StreamReader(file)) using (StreamReader sr = new StreamReader(file))
{ {
var json = sr.ReadToEnd(); var json = sr.ReadToEnd();
Contexts = JsonConvert.DeserializeObject<DebugContextCollection>(json); Contexts = JsonConvert.DeserializeObject<DebugContextCollection>(json);
if (Contexts != null) if (Contexts != null)
{ {
Debug.Console(0, "Debug memory restored from file"); Debug.Console(0, "Debug memory restored from file");
return; return;
} }
} }
} }
Contexts = new DebugContextCollection(); Contexts = new DebugContextCollection();
} }
/// <summary> /// <summary>
/// Helper to get the file path for this app's debug memory /// Helper to get the file path for this app's debug memory
/// </summary> /// </summary>
static string GetMemoryFileName() static string GetMemoryFileName()
{ {
return string.Format(@"\NVRAM\debugSettings\program{0}", InitialParametersClass.ApplicationNumber); return string.Format(@"\NVRAM\debugSettings\program{0}", InitialParametersClass.ApplicationNumber);
} }
public enum ErrorLogLevel public enum ErrorLogLevel
{ {
Error, Warning, Notice, None Error, Warning, Notice, None
} }
} }
} }

View File

@@ -1,255 +1,255 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Crestron.SimplSharp; using Crestron.SimplSharp;
using Crestron.SimplSharp.CrestronDataStore; using Crestron.SimplSharp.CrestronDataStore;
using Crestron.SimplSharp.CrestronIO; using Crestron.SimplSharp.CrestronIO;
using Newtonsoft.Json; using Newtonsoft.Json;
using PepperDash.Core.DebugThings; using PepperDash.Core.DebugThings;
namespace PepperDash.Core namespace PepperDash.Core
{ {
public class DebugContext public class DebugContext
{ {
/// <summary> /// <summary>
/// Describes the folder location where a given program stores it's debug level memory. By default, the /// 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. /// file written will be named appNdebug where N is 1-10.
/// </summary> /// </summary>
public string Key { get; private set; } public string Key { get; private set; }
///// <summary> ///// <summary>
///// The name of the file containing the current debug settings. ///// The name of the file containing the current debug settings.
///// </summary> ///// </summary>
//string FileName = string.Format(@"\nvram\debug\app{0}Debug.json", InitialParametersClass.ApplicationNumber); //string FileName = string.Format(@"\nvram\debug\app{0}Debug.json", InitialParametersClass.ApplicationNumber);
DebugContextSaveData SaveData; DebugContextSaveData SaveData;
int SaveTimeoutMs = 30000; int SaveTimeoutMs = 30000;
CTimer SaveTimer; CTimer SaveTimer;
static List<DebugContext> Contexts = new List<DebugContext>(); static List<DebugContext> Contexts = new List<DebugContext>();
/// <summary> /// <summary>
/// Creates or gets a debug context /// Creates or gets a debug context
/// </summary> /// </summary>
/// <param name="key"></param> /// <param name="key"></param>
/// <returns></returns> /// <returns></returns>
public static DebugContext GetDebugContext(string key) public static DebugContext GetDebugContext(string key)
{ {
var context = Contexts.FirstOrDefault(c => c.Key.Equals(key, StringComparison.OrdinalIgnoreCase)); var context = Contexts.FirstOrDefault(c => c.Key.Equals(key, StringComparison.OrdinalIgnoreCase));
if (context == null) if (context == null)
{ {
context = new DebugContext(key); context = new DebugContext(key);
Contexts.Add(context); Contexts.Add(context);
} }
return context; return context;
} }
/// <summary> /// <summary>
/// Do not use. For S+ access. /// Do not use. For S+ access.
/// </summary> /// </summary>
public DebugContext() { } public DebugContext() { }
DebugContext(string key) DebugContext(string key)
{ {
Key = key; Key = key;
if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro) if (CrestronEnvironment.RuntimeEnvironment == eRuntimeEnvironment.SimplSharpPro)
{ {
// Add command to console // Add command to console
CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug", CrestronConsole.AddNewConsoleCommand(SetDebugFromConsole, "appdebug",
"appdebug:P [0-2]: Sets the application's console debug message level", "appdebug:P [0-2]: Sets the application's console debug message level",
ConsoleAccessLevelEnum.AccessOperator); ConsoleAccessLevelEnum.AccessOperator);
} }
CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler; CrestronEnvironment.ProgramStatusEventHandler += CrestronEnvironment_ProgramStatusEventHandler;
LoadMemory(); LoadMemory();
} }
/// <summary> /// <summary>
/// Used to save memory when shutting down /// Used to save memory when shutting down
/// </summary> /// </summary>
/// <param name="programEventType"></param> /// <param name="programEventType"></param>
void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType) void CrestronEnvironment_ProgramStatusEventHandler(eProgramStatusEventType programEventType)
{ {
if (programEventType == eProgramStatusEventType.Stopping) if (programEventType == eProgramStatusEventType.Stopping)
{ {
if (SaveTimer != null) if (SaveTimer != null)
{ {
SaveTimer.Stop(); SaveTimer.Stop();
SaveTimer = null; SaveTimer = null;
} }
Console(0, "Saving debug settings"); Console(0, "Saving debug settings");
SaveMemory(); SaveMemory();
} }
} }
/// <summary> /// <summary>
/// Callback for console command /// Callback for console command
/// </summary> /// </summary>
/// <param name="levelString"></param> /// <param name="levelString"></param>
public void SetDebugFromConsole(string levelString) public void SetDebugFromConsole(string levelString)
{ {
try try
{ {
if (string.IsNullOrEmpty(levelString.Trim())) if (string.IsNullOrEmpty(levelString.Trim()))
{ {
CrestronConsole.PrintLine("AppDebug level = {0}", SaveData.Level); CrestronConsole.PrintLine("AppDebug level = {0}", SaveData.Level);
return; return;
} }
SetDebugLevel(Convert.ToInt32(levelString)); SetDebugLevel(Convert.ToInt32(levelString));
} }
catch catch
{ {
CrestronConsole.PrintLine("Usage: appdebug:P [0-2]"); CrestronConsole.PrintLine("Usage: appdebug:P [0-2]");
} }
} }
/// <summary> /// <summary>
/// Sets the debug level /// Sets the debug level
/// </summary> /// </summary>
/// <param name="level"> Valid values 0 (no debug), 1 (critical), 2 (all messages)</param> /// <param name="level"> Valid values 0 (no debug), 1 (critical), 2 (all messages)</param>
public void SetDebugLevel(int level) public void SetDebugLevel(int level)
{ {
if (level <= 2) if (level <= 2)
{ {
SaveData.Level = level; SaveData.Level = level;
SaveMemoryOnTimeout(); SaveMemoryOnTimeout();
CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}", CrestronConsole.PrintLine("[Application {0}], Debug level set to {1}",
InitialParametersClass.ApplicationNumber, SaveData.Level); InitialParametersClass.ApplicationNumber, SaveData.Level);
} }
} }
/// <summary> /// <summary>
/// Prints message to console if current debug level is equal to or higher than the level of this message. /// Prints message to console if current debug level is equal to or higher than the level of this message.
/// Uses CrestronConsole.PrintLine. /// Uses CrestronConsole.PrintLine.
/// </summary> /// </summary>
/// <param name="level"></param> /// <param name="level"></param>
/// <param name="format">Console format string</param> /// <param name="format">Console format string</param>
/// <param name="items">Object parameters</param> /// <param name="items">Object parameters</param>
public void Console(uint level, string format, params object[] items) public void Console(uint level, string format, params object[] items)
{ {
if (SaveData.Level >= level) if (SaveData.Level >= level)
CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber,
string.Format(format, items)); string.Format(format, items));
} }
/// <summary> /// <summary>
/// Appends a device Key to the beginning of a message /// Appends a device Key to the beginning of a message
/// </summary> /// </summary>
public void Console(uint level, IKeyed dev, string format, params object[] items) public void Console(uint level, IKeyed dev, string format, params object[] items)
{ {
if (SaveData.Level >= level) if (SaveData.Level >= level)
Console(level, "[{0}] {1}", dev.Key, string.Format(format, items)); Console(level, "[{0}] {1}", dev.Key, string.Format(format, items));
} }
public void Console(uint level, IKeyed dev, Debug.ErrorLogLevel errorLogLevel, public void Console(uint level, IKeyed dev, Debug.ErrorLogLevel errorLogLevel,
string format, params object[] items) string format, params object[] items)
{ {
if (SaveData.Level >= level) if (SaveData.Level >= level)
{ {
var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items)); var str = string.Format("[{0}] {1}", dev.Key, string.Format(format, items));
Console(level, str); Console(level, str);
LogError(errorLogLevel, str); LogError(errorLogLevel, str);
} }
} }
public void Console(uint level, Debug.ErrorLogLevel errorLogLevel, public void Console(uint level, Debug.ErrorLogLevel errorLogLevel,
string format, params object[] items) string format, params object[] items)
{ {
if (SaveData.Level >= level) if (SaveData.Level >= level)
{ {
var str = string.Format(format, items); var str = string.Format(format, items);
Console(level, str); Console(level, str);
LogError(errorLogLevel, str); LogError(errorLogLevel, str);
} }
} }
public void LogError(Debug.ErrorLogLevel errorLogLevel, string str) public void LogError(Debug.ErrorLogLevel errorLogLevel, string str)
{ {
string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str); string msg = string.Format("App {0}:{1}", InitialParametersClass.ApplicationNumber, str);
switch (errorLogLevel) switch (errorLogLevel)
{ {
case Debug.ErrorLogLevel.Error: case Debug.ErrorLogLevel.Error:
ErrorLog.Error(msg); ErrorLog.Error(msg);
break; break;
case Debug.ErrorLogLevel.Warning: case Debug.ErrorLogLevel.Warning:
ErrorLog.Warn(msg); ErrorLog.Warn(msg);
break; break;
case Debug.ErrorLogLevel.Notice: case Debug.ErrorLogLevel.Notice:
ErrorLog.Notice(msg); ErrorLog.Notice(msg);
break; break;
} }
} }
/// <summary> /// <summary>
/// Writes the memory object after timeout /// Writes the memory object after timeout
/// </summary> /// </summary>
void SaveMemoryOnTimeout() void SaveMemoryOnTimeout()
{ {
if (SaveTimer == null) if (SaveTimer == null)
SaveTimer = new CTimer(o => SaveTimer = new CTimer(o =>
{ {
SaveTimer = null; SaveTimer = null;
SaveMemory(); SaveMemory();
}, SaveTimeoutMs); }, SaveTimeoutMs);
else else
SaveTimer.Reset(SaveTimeoutMs); SaveTimer.Reset(SaveTimeoutMs);
} }
/// <summary> /// <summary>
/// Writes the memory - use SaveMemoryOnTimeout /// Writes the memory - use SaveMemoryOnTimeout
/// </summary> /// </summary>
void SaveMemory() void SaveMemory()
{ {
using (StreamWriter sw = new StreamWriter(GetMemoryFileName())) using (StreamWriter sw = new StreamWriter(GetMemoryFileName()))
{ {
var json = JsonConvert.SerializeObject(SaveData); var json = JsonConvert.SerializeObject(SaveData);
sw.Write(json); sw.Write(json);
sw.Flush(); sw.Flush();
} }
} }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
void LoadMemory() void LoadMemory()
{ {
var file = GetMemoryFileName(); var file = GetMemoryFileName();
if (File.Exists(file)) if (File.Exists(file))
{ {
using (StreamReader sr = new StreamReader(file)) using (StreamReader sr = new StreamReader(file))
{ {
var data = JsonConvert.DeserializeObject<DebugContextSaveData>(sr.ReadToEnd()); var data = JsonConvert.DeserializeObject<DebugContextSaveData>(sr.ReadToEnd());
if (data != null) if (data != null)
{ {
SaveData = data; SaveData = data;
Debug.Console(0, "Debug memory restored from file"); Debug.Console(0, "Debug memory restored from file");
return; return;
} }
else else
SaveData = new DebugContextSaveData(); SaveData = new DebugContextSaveData();
} }
} }
} }
/// <summary> /// <summary>
/// Helper to get the file path for this app's debug memory /// Helper to get the file path for this app's debug memory
/// </summary> /// </summary>
string GetMemoryFileName() string GetMemoryFileName()
{ {
return string.Format(@"\NVRAM\debugSettings\program{0}-{1}", InitialParametersClass.ApplicationNumber, Key); return string.Format(@"\NVRAM\debugSettings\program{0}-{1}", InitialParametersClass.ApplicationNumber, Key);
} }
} }
public class DebugContextSaveData public class DebugContextSaveData
{ {
public int Level { get; set; } public int Level { get; set; }
} }
} }

View File

@@ -1,58 +1,58 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using Crestron.SimplSharp; using Crestron.SimplSharp;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace PepperDash.Core.DebugThings namespace PepperDash.Core.DebugThings
{ {
public class DebugContextCollection public class DebugContextCollection
{ {
[JsonProperty("items")] [JsonProperty("items")]
Dictionary<string, DebugContextItem> Items; Dictionary<string, DebugContextItem> Items;
public DebugContextCollection() public DebugContextCollection()
{ {
Items = new Dictionary<string, DebugContextItem>(); Items = new Dictionary<string, DebugContextItem>();
} }
/// <summary> /// <summary>
/// Sets the level of a given context item, and adds that item if it does not /// Sets the level of a given context item, and adds that item if it does not
/// exist /// exist
/// </summary> /// </summary>
/// <param name="contextKey"></param> /// <param name="contextKey"></param>
/// <param name="level"></param> /// <param name="level"></param>
/// <returns>True if the 0 <= level <= 2 and the conte </returns> /// <returns>True if the 0 <= level <= 2 and the conte </returns>
public void SetLevel(string contextKey, int level) public void SetLevel(string contextKey, int level)
{ {
if (level < 0 || level > 2) if (level < 0 || level > 2)
return; return;
GetOrCreateItem(contextKey).Level = level; GetOrCreateItem(contextKey).Level = level;
} }
/// <summary> /// <summary>
/// Gets a level or creates it if not existing /// Gets a level or creates it if not existing
/// </summary> /// </summary>
/// <param name="contextKey"></param> /// <param name="contextKey"></param>
/// <returns></returns> /// <returns></returns>
public DebugContextItem GetOrCreateItem(string contextKey) public DebugContextItem GetOrCreateItem(string contextKey)
{ {
if (!Items.ContainsKey(contextKey)) if (!Items.ContainsKey(contextKey))
Items[contextKey] = new DebugContextItem(this) { Level = 0 }; Items[contextKey] = new DebugContextItem(this) { Level = 0 };
return Items[contextKey]; return Items[contextKey];
} }
} }
public class DebugContextItem public class DebugContextItem
{ {
[JsonProperty("level")] [JsonProperty("level")]
public int Level { get; set; } public int Level { get; set; }
public DebugContextItem(DebugContextCollection parent) public DebugContextItem(DebugContextCollection parent)
{ {
} }
} }
} }

View File

@@ -74,9 +74,9 @@
<Compile Include="Comm\EventArgs.cs" /> <Compile Include="Comm\EventArgs.cs" />
<Compile Include="Comm\GenericSshClient.cs" /> <Compile Include="Comm\GenericSshClient.cs" />
<Compile Include="CoreInterfaces.cs" /> <Compile Include="CoreInterfaces.cs" />
<Compile Include="Debug\Debug.cs" /> <Compile Include="Logging\Debug.cs" />
<Compile Include="Debug\DebugContext.cs" /> <Compile Include="Logging\DebugContext.cs" />
<Compile Include="Debug\DebugMemory.cs" /> <Compile Include="Logging\DebugMemory.cs" />
<Compile Include="Device.cs" /> <Compile Include="Device.cs" />
<Compile Include="DeviceConfig.cs" /> <Compile Include="DeviceConfig.cs" />
<Compile Include="Comm\GenericTcpIpServer.cs" /> <Compile Include="Comm\GenericTcpIpServer.cs" />

View File

@@ -3,6 +3,5 @@
[assembly: AssemblyTitle("Pepperdash_Core")] [assembly: AssemblyTitle("Pepperdash_Core")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Pepperdash_Core")] [assembly: AssemblyProduct("Pepperdash_Core")]
[assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyCopyright("Copyright © PepperDash 2016")]
[assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.1.*")]

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -1,20 +0,0 @@
<ProgramInfo>
<RequiredInfo>
<FriendlyName>PepperDash_Core</FriendlyName>
<SystemName>PepperDash_Core</SystemName>
<EntryPoint>PepperDash_Core</EntryPoint>
<MinFirmwareVersion>1.007.0017</MinFirmwareVersion>
<ProgramTool>SIMPL# Plugin</ProgramTool>
<DesignToolId>5</DesignToolId>
<ProgramToolId>5</ProgramToolId>
<ArchiveName />
</RequiredInfo>
<OptionalInfo>
<CompiledOn>4/28/2017 11:01:37 AM</CompiledOn>
<CompilerRev>1.0.6327.18048</CompilerRev>
</OptionalInfo>
<Plugin>
<Version>Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10</Version>
<Include4.dat />
</Plugin>
</ProgramInfo>

View File

@@ -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

View File

@@ -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

Binary file not shown.