├── .gitattributes ├── .gitignore ├── SimplSharpDay1_IR_Versiport_ComPort ├── SimplSharpDay1.sln ├── SimplSharpDay1.suo └── SimplSharpDay3 │ ├── ControlSystem.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ ├── (2016-07-28 08-54-48).log │ ├── (2016-07-28 12-11-31).log │ ├── (2016-07-28 12-30-46).log │ ├── (2016-08-01 13-34-03).log │ ├── (2016-08-01 13-44-21).log │ ├── (2016-08-01 13-48-07).log │ ├── (2016-08-01 13-50-03).log │ ├── (2016-08-01 13-51-14).log │ ├── (2016-08-01 14-00-55).log │ ├── (2016-08-03 09-11-02).log │ ├── (2016-08-03 13-51-04).log │ └── (2016-08-16 06-11-50).log │ ├── SimplSharpDay1.csproj │ ├── SimplSharpDay1.csproj.user │ ├── SimplSharpDay1.projectinfo │ ├── bin │ ├── Debug │ │ ├── Crestron.SimplSharpPro.DM.dll │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ ├── Crestron.SimplSharpPro.EthernetCommunications.dll │ │ ├── Crestron.SimplSharpPro.Keypads.dll │ │ ├── Crestron.SimplSharpPro.UI.dll │ │ ├── ProgramInfo.config │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpDay1.cpz │ │ ├── SimplSharpDay1.dll │ │ ├── SimplSharpDay1.pdb │ │ ├── SimplSharpHelperInterface.dll │ │ ├── SimplSharpPro.exe │ │ ├── manifest.info │ │ └── manifest.ser │ └── ProjectInfo.dat │ └── obj │ └── Debug │ ├── ResolveAssemblyReference.cache │ ├── SimplSharpDay1.csproj.FileListAbsolute.txt │ ├── SimplSharpDay1.dll │ └── SimplSharpDay1.pdb ├── SimplSharpDay2_DataStore ├── DataStore.sln ├── DataStore.suo └── DataStore │ ├── ControlSystem.cs │ ├── DataStore.csproj │ ├── DataStore.csproj.user │ ├── DataStore.projectinfo │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ ├── (2016-07-27 11-15-14).log │ ├── (2016-08-01 13-02-50).log │ ├── (2016-08-03 09-04-16).log │ ├── (2016-08-17 06-41-12).log │ └── (2016-08-17 09-23-53).log │ ├── bin │ └── Debug │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ ├── DataStore.cpz │ │ ├── DataStore.dll │ │ ├── DataStore.pdb │ │ ├── ProgramInfo.config │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpHelperInterface.dll │ │ ├── SimplSharpPro.exe │ │ ├── manifest.info │ │ └── manifest.ser │ └── obj │ └── Debug │ ├── DataStore.csproj.FileListAbsolute.txt │ ├── DataStore.dll │ ├── DataStore.pdb │ └── ResolveAssemblyReference.cache ├── SimplSharpDay2_FileHandling ├── FileControls │ ├── FileControl.cs │ ├── FileControls.csproj │ ├── FileControls.csproj.user │ ├── FileControls.projectinfo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ │ ├── (2016-07-27 08-16-09).log │ │ ├── (2016-08-01 12-55-06).log │ │ ├── (2016-08-01 13-47-47).log │ │ ├── (2016-08-01 13-59-09).log │ │ ├── (2016-08-01 14-01-31).log │ │ ├── (2016-08-03 13-23-59).log │ │ ├── (2016-08-03 13-37-06).log │ │ ├── (2016-08-17 07-19-27).log │ │ └── (2016-08-18 04-08-54).log │ ├── bin │ │ ├── Debug │ │ │ ├── FileControls.clz │ │ │ ├── FileControls.config │ │ │ ├── FileControls.dll │ │ │ ├── FileControls.pdb │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ ├── SimplSharpData.dat │ │ │ ├── SimplSharpHelperInterface.dll │ │ │ ├── manifest.info │ │ │ └── manifest.ser │ │ └── ProjectInfo.dat │ └── obj │ │ └── Debug │ │ ├── FileControls.csproj.FileListAbsolute.txt │ │ ├── FileControls.dll │ │ ├── FileControls.pdb │ │ └── ResolveAssemblyReference.cache ├── SimplSharpDay1 │ ├── ControlSystem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ │ ├── (2016-07-27 08-16-08).log │ │ ├── (2016-08-01 12-55-05).log │ │ ├── (2016-08-01 13-47-46).log │ │ ├── (2016-08-01 13-59-08).log │ │ ├── (2016-08-01 14-01-30).log │ │ ├── (2016-08-03 13-23-58).log │ │ ├── (2016-08-03 13-37-05).log │ │ ├── (2016-08-17 07-19-27).log │ │ └── (2016-08-18 04-08-54).log │ ├── SimplSharpDay1.projectinfo │ ├── SimplSharpDay2.csproj │ ├── SimplSharpDay2.csproj.user │ ├── SimplSharpDay2.projectinfo │ ├── bin │ │ ├── Debug │ │ │ ├── Crestron.SimplSharpPro.DM.dll │ │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ │ ├── Crestron.SimplSharpPro.Keypads.dll │ │ │ ├── ProgramInfo.config │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ ├── SimplSharpData.dat │ │ │ ├── SimplSharpDay2.cpz │ │ │ ├── SimplSharpDay2.dll │ │ │ ├── SimplSharpDay2.pdb │ │ │ ├── SimplSharpHelperInterface.dll │ │ │ ├── SimplSharpPro.exe │ │ │ ├── manifest.info │ │ │ └── manifest.ser │ │ └── ProjectInfo.dat │ └── obj │ │ └── Debug │ │ ├── ResolveAssemblyReference.cache │ │ ├── SimplSharpDay1.csproj.FileListAbsolute.txt │ │ ├── SimplSharpDay1.dll │ │ ├── SimplSharpDay1.pdb │ │ ├── SimplSharpDay2.csproj.FileListAbsolute.txt │ │ ├── SimplSharpDay2.dll │ │ └── SimplSharpDay2.pdb ├── SimplSharpDay1Reusable │ ├── ControlSystem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ControlSystem.cfg │ ├── References │ │ └── FileControls.clz │ │ │ ├── FileControls.clz │ │ │ ├── FileControls.dll │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ └── SimplSharpHelperInterface.dll │ ├── SIMPLSharpLogs │ │ ├── (2016-07-27 08-16-09).log │ │ ├── (2016-08-01 12-55-06).log │ │ ├── (2016-08-01 13-47-47).log │ │ ├── (2016-08-01 13-59-09).log │ │ ├── (2016-08-01 14-01-31).log │ │ ├── (2016-08-03 13-23-59).log │ │ ├── (2016-08-03 13-37-06).log │ │ ├── (2016-08-17 07-19-27).log │ │ └── (2016-08-18 04-08-54).log │ ├── SimplSharpDay1Reusable.projectinfo │ ├── SimplSharpDay2Reusable.csproj │ ├── SimplSharpDay2Reusable.csproj.user │ ├── SimplSharpDay2Reusable.projectinfo │ ├── bin │ │ ├── Debug │ │ │ ├── Crestron.SimplSharpPro.DM.dll │ │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ │ ├── Crestron.SimplSharpPro.Keypads.dll │ │ │ ├── FileControls.dll │ │ │ ├── ProgramInfo.config │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ ├── SimplSharpData.dat │ │ │ ├── SimplSharpDay2Reusable.cpz │ │ │ ├── SimplSharpDay2Reusable.dll │ │ │ ├── SimplSharpDay2Reusable.pdb │ │ │ ├── SimplSharpHelperInterface.dll │ │ │ ├── SimplSharpPro.exe │ │ │ ├── manifest.info │ │ │ └── manifest.ser │ │ └── ProjectInfo.dat │ └── obj │ │ └── Debug │ │ ├── ResolveAssemblyReference.cache │ │ ├── SimplSharpDay1Reusable.csproj.FileListAbsolute.txt │ │ ├── SimplSharpDay1Reusable.dll │ │ ├── SimplSharpDay1Reusable.pdb │ │ ├── SimplSharpDay2Reusable.csproj.FileListAbsolute.txt │ │ ├── SimplSharpDay2Reusable.dll │ │ └── SimplSharpDay2Reusable.pdb ├── SimplSharpDay2.sln └── SimplSharpDay2.suo ├── SimplSharpDay2_SSHClient ├── SSHClient.sln ├── SSHClient.suo └── SSHClient │ ├── KeyboardInteractive.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ ├── (2016-08-01 13-23-34).log │ ├── (2016-08-01 13-26-36).log │ ├── (2016-08-01 14-36-25).log │ └── (2016-08-17 10-18-36).log │ ├── SSHClient.csproj │ ├── SSHClient.csproj.user │ ├── SSHClient.projectinfo │ ├── SSHClientDevice.cs │ ├── bin │ ├── Debug │ │ ├── SSHClient.clz │ │ ├── SSHClient.config │ │ ├── SSHClient.dll │ │ ├── SSHClient.pdb │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpHelperInterface.dll │ │ ├── manifest.info │ │ └── manifest.ser │ └── ProjectInfo.dat │ └── obj │ └── Debug │ ├── ResolveAssemblyReference.cache │ ├── SSHClient.csproj.FileListAbsolute.txt │ ├── SSHClient.dll │ └── SSHClient.pdb ├── SimplSharpDay2_SSHClientProcessorCode ├── SSHClientProcessorCode.sln ├── SSHClientProcessorCode.suo └── SSHClientProcessorCode │ ├── ControlSystem.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── References │ └── SSHClient.clz │ │ ├── SSHClient.clz │ │ ├── SSHClient.dll │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ └── SimplSharpHelperInterface.dll │ ├── SIMPLSharpLogs │ └── (2016-08-17 10-19-12).log │ ├── SSHClientProcessorCode.csproj │ ├── SSHClientProcessorCode.csproj.user │ ├── SSHClientProcessorCode.projectinfo │ ├── bin │ ├── Debug │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ ├── ProgramInfo.config │ │ ├── SSHClient.dll │ │ ├── SSHClientProcessorCode.cpz │ │ ├── SSHClientProcessorCode.dll │ │ ├── SSHClientProcessorCode.pdb │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpHelperInterface.dll │ │ ├── SimplSharpPro.exe │ │ ├── manifest.info │ │ └── manifest.ser │ └── ProjectInfo.dat │ └── obj │ └── Debug │ ├── ResolveAssemblyReference.cache │ ├── SSHClientProcessorCode.csproj.FileListAbsolute.txt │ ├── SSHClientProcessorCode.dll │ └── SSHClientProcessorCode.pdb ├── SimplSharpDay2_ThreadSync ├── ThreadSync.sln ├── ThreadSync.suo └── ThreadSync │ ├── ControlSystem.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ ├── (2016-07-27 09-48-38).log │ ├── (2016-08-01 13-00-12).log │ └── (2016-08-17 04-22-35).log │ ├── ThreadSync.csproj │ ├── ThreadSync.csproj.user │ ├── ThreadSync.projectinfo │ ├── bin │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ ├── ProgramInfo.config │ ├── ProjectInfo.dat │ ├── SimplSharpCustomAttributesInterface.dll │ ├── SimplSharpData.dat │ ├── SimplSharpHelperInterface.dll │ ├── SimplSharpPro.exe │ ├── ThreadSync.cpz │ ├── ThreadSync.dll │ ├── ThreadSync.pdb │ ├── manifest.info │ └── manifest.ser │ └── obj │ └── Debug │ ├── ResolveAssemblyReference.cache │ ├── ThreadSync.csproj.FileListAbsolute.txt │ ├── ThreadSync.dll │ └── ThreadSync.pdb ├── SimplSharpDay3_BuiltInScheduler ├── BuiltInScheduler SSP │ ├── BuiltInScheduler SSP.csproj │ ├── BuiltInScheduler SSP.csproj.user │ ├── BuiltInScheduler SSP.projectinfo │ ├── ControlSystem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ControlSystem.cfg │ ├── References │ │ └── BuiltInScheduler.clz │ │ │ ├── BuiltInScheduler.clz │ │ │ ├── BuiltInScheduler.dll │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ ├── SimplSharpHelperInterface.dll │ │ │ └── SimplSharpTimerEventInterface.dll │ ├── SIMPLSharpLogs │ │ ├── (2016-07-28 09-11-51).log │ │ ├── (2016-08-01 13-29-03).log │ │ ├── (2016-08-01 13-58-35).log │ │ └── (2016-08-18 04-02-36).log │ ├── bin │ │ ├── Debug │ │ │ ├── BuiltInScheduler SSP.cpz │ │ │ ├── BuiltInScheduler SSP.dll │ │ │ ├── BuiltInScheduler SSP.pdb │ │ │ ├── BuiltInScheduler.dll │ │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ │ ├── ProgramInfo.config │ │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ │ ├── SimplSharpData.dat │ │ │ ├── SimplSharpHelperInterface.dll │ │ │ ├── SimplSharpPro.exe │ │ │ ├── SimplSharpTimerEventInterface.dll │ │ │ ├── manifest.info │ │ │ ├── manifest.ser │ │ │ └── system.data.sqlclient.dll │ │ └── ProjectInfo.dat │ └── obj │ │ └── Debug │ │ ├── BuiltInScheduler SSP.csproj.FileListAbsolute.txt │ │ ├── BuiltInScheduler SSP.dll │ │ ├── BuiltInScheduler SSP.pdb │ │ └── ResolveAssemblyReference.cache ├── BuiltInScheduler.sln ├── BuiltInScheduler.suo └── BuiltInScheduler │ ├── BuiltInScheduler.csproj │ ├── BuiltInScheduler.csproj.user │ ├── BuiltInScheduler.projectinfo │ ├── BuiltInSchedulerExample.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPL Windows │ ├── SPlsWork │ │ ├── BuiltInScheduler.dll │ │ ├── BuiltInScheduler.h │ │ ├── BuiltInScheduler.inf │ │ ├── ProjectInfo.dat │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpTimerEventInterface.dll │ │ ├── Version.ini │ │ ├── doIt.dll │ │ └── doIt.inf │ ├── Scheduler.lpz │ ├── Scheduler.sig │ ├── Scheduler.sm2 │ ├── Scheduler.smw │ ├── Scheduler.smw.ASV │ ├── Scheduler_archive.zip │ ├── Scheduler_compiled.zip │ ├── SimplSharpTimerEventInterface.dll │ ├── doIt.ush │ └── doIt.usp │ ├── SIMPLSharpLogs │ ├── (2016-07-28 09-11-50).log │ ├── (2016-08-01 13-29-02).log │ ├── (2016-08-01 13-58-35).log │ └── (2016-08-18 04-02-31).log │ ├── bin │ ├── BuiltInScheduler.clz │ ├── BuiltInScheduler.config │ ├── BuiltInScheduler.dll │ ├── BuiltInScheduler.pdb │ ├── ProjectInfo.dat │ ├── SimplSharpCustomAttributesInterface.dll │ ├── SimplSharpData.dat │ ├── SimplSharpHelperInterface.dll │ ├── SimplSharpTimerEventInterface.dll │ ├── manifest.info │ └── manifest.ser │ └── obj │ └── Debug │ ├── BuiltInScheduler.csproj.FileListAbsolute.txt │ ├── BuiltInScheduler.dll │ ├── BuiltInScheduler.pdb │ ├── Refactor │ └── BuiltInScheduler.dll │ └── ResolveAssemblyReference.cache ├── SimplSharpDay3_Json ├── SimplSharpDay3_Json.sln ├── SimplSharpDay3_Json.suo └── SimplSharpDay3_Json │ ├── ControlSystem.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── SIMPLSharpLogs │ ├── (2016-08-02 05-32-50).log │ ├── (2016-08-03 09-38-01).log │ ├── (2016-08-03 10-53-20).log │ ├── (2016-09-30 10-17-51).log │ ├── (2016-09-30 11-55-31).log │ └── (2016-09-30 11-59-46).log │ ├── SimplSharpDay3_Json.csproj │ ├── SimplSharpDay3_Json.csproj.user │ ├── SimplSharpDay3_Json.projectinfo │ ├── StyleCop.Cache │ ├── bin │ └── Debug │ │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ │ ├── Newtonsoft.Json.Compact.dll │ │ ├── ProgramInfo.config │ │ ├── SimplSharpCustomAttributesInterface.dll │ │ ├── SimplSharpData.dat │ │ ├── SimplSharpDay3_Json.cpz │ │ ├── SimplSharpDay3_Json.dll │ │ ├── SimplSharpDay3_Json.pdb │ │ ├── SimplSharpHelperInterface.dll │ │ ├── SimplSharpNewtonsoft.dll │ │ ├── SimplSharpPro.exe │ │ ├── SimplSharpReflectionInterface.dll │ │ ├── SimplSharpSQLHelperInterface.dll │ │ ├── manifest.info │ │ └── manifest.ser │ └── obj │ └── Debug │ ├── ResolveAssemblyReference.cache │ ├── SimplSharpDay3_Json.csproj.FileListAbsolute.txt │ ├── SimplSharpDay3_Json.dll │ └── SimplSharpDay3_Json.pdb ├── SimplSharpDay3_Reflection ├── Reflection.sln ├── Reflection.suo └── Reflection │ ├── ControlSystem.cs │ ├── ProjectInfo.dat │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── Reflection.csproj │ ├── Reflection.csproj.user │ ├── Reflection.projectinfo │ ├── SIMPLSharpLogs │ ├── (2016-07-28 14-42-54).log │ └── (2016-08-01 13-55-41).log │ ├── bin │ ├── Crestron.SimplSharpPro.DM.dll │ ├── Crestron.SimplSharpPro.DeviceSupport.dll │ ├── Crestron.SimplSharpPro.UI.dll │ ├── ProgramInfo.config │ ├── ProjectInfo.dat │ ├── Reflection.cpz │ ├── Reflection.dll │ ├── Reflection.pdb │ ├── SimplSharpCustomAttributesInterface.dll │ ├── SimplSharpData.dat │ ├── SimplSharpHelperInterface.dll │ ├── SimplSharpPro.exe │ ├── SimplSharpReflectionInterface.dll │ ├── manifest.info │ └── manifest.ser │ └── obj │ └── Debug │ ├── Reflection.csproj.FileListAbsolute.txt │ ├── Reflection.dll │ ├── Reflection.pdb │ └── ResolveAssemblyReference.cache ├── SimplSharpDay3_ReflectionLib1 ├── ReflectionLib1.sln └── ReflectionLib1 │ ├── ProjectInfo.dat │ ├── Properties │ ├── AssemblyInfo.cs │ └── ControlSystem.cfg │ ├── ReflectionLib1.csproj │ ├── ReflectionLib1.csproj.user │ ├── ReflectionLib1.projectinfo │ ├── RelayClicks.cs │ ├── SIMPLSharpLogs │ ├── (2016-07-28 14-42-54).log │ └── (2016-08-01 13-56-20).log │ ├── bin │ ├── ProjectInfo.dat │ ├── ReflectionLib1.config │ ├── ReflectionLib1.cplz │ ├── ReflectionLib1.dll │ ├── ReflectionLib1.pdb │ ├── SimplSharpData.dat │ ├── manifest.info │ └── manifest.ser │ └── obj │ └── Debug │ ├── ReflectionLib1.csproj.FileListAbsolute.txt │ ├── ReflectionLib1.dll │ ├── ReflectionLib1.pdb │ └── ResolveAssemblyReference.cache └── SimplSharpDay3_ReflectionLib2 ├── ReflectionLib2.sln ├── ReflectionLib2.suo └── ReflectionLib2 ├── PrintToConsole.cs ├── ProjectInfo.dat ├── Properties ├── AssemblyInfo.cs └── ControlSystem.cfg ├── ReflectionLib2.csproj ├── ReflectionLib2.csproj.user ├── ReflectionLib2.projectinfo ├── SIMPLSharpLogs ├── (2016-07-28 14-42-54).log └── (2016-08-01 13-56-29).log ├── bin ├── ProjectInfo.dat ├── ReflectionLib2.config ├── ReflectionLib2.cplz ├── ReflectionLib2.dll ├── ReflectionLib2.pdb ├── SimplSharpData.dat ├── manifest.info └── manifest.ser └── obj └── Debug ├── ReflectionLib2.csproj.FileListAbsolute.txt ├── ReflectionLib2.dll └── ReflectionLib2.pdb /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimplSharpDay1", "SimplSharpDay3\SimplSharpDay1.csproj", "{99404BA6-A86C-4B9E-AAD3-DD3B8268E457}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {99404BA6-A86C-4B9E-AAD3-DD3B8268E457}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {99404BA6-A86C-4B9E-AAD3-DD3B8268E457}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {99404BA6-A86C-4B9E-AAD3-DD3B8268E457}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {99404BA6-A86C-4B9E-AAD3-DD3B8268E457}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay1.suo -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SimplSharpDay3")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SimplSharpDay3")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-07-28 12-11-31).log: -------------------------------------------------------------------------------- 1 | 28/07/2016 12:11:31, Info: Initializing SIMPLSharp Services... 2 | 28/07/2016 12:11:31, Info: ProjectInfo successfully initialized. 3 | 28/07/2016 12:16:26, Info: Saving project information... 4 | 28/07/2016 12:16:26, Info: Saving project information... 5 | 28/07/2016 12:16:26, Info: Saving project information... 6 | 28/07/2016 12:21:26, Info: Saving project information... 7 | 28/07/2016 12:21:26, Info: Saving project information... 8 | 28/07/2016 12:21:26, Info: Saving project information... 9 | 28/07/2016 12:23:10, Info: Saving project information... 10 | 28/07/2016 12:23:10, Info: Saving project information... 11 | 28/07/2016 12:23:10, Info: Saving project information... 12 | 28/07/2016 12:23:10, Info: Saving project information... 13 | 28/07/2016 12:23:10, Info: Saving project information... 14 | 28/07/2016 12:23:10, Info: Saving project information... 15 | 28/07/2016 12:23:10, Info: Terminating SIMPLSharp Services 16 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-07-28 12-30-46).log: -------------------------------------------------------------------------------- 1 | 7/28/2016 12:30:46 PM, Info: Initializing SIMPLSharp Services... 2 | 7/28/2016 12:30:46 PM, Info: ProjectInfo successfully initialized. 3 | 7/29/2016 9:26:20 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 13-34-03).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:34:03, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:34:03, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:35:26, Info: Saving project information... 4 | 01/08/2016 13:35:26, Info: Saving project information... 5 | 01/08/2016 13:35:26, Info: Saving project information... 6 | 01/08/2016 13:35:26, Info: Saving project information... 7 | 01/08/2016 13:35:26, Info: Saving project information... 8 | 01/08/2016 13:35:26, Info: Saving project information... 9 | 01/08/2016 13:44:12, Info: Terminating SIMPLSharp Services 10 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 13-44-21).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:44:21, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:44:21, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:44:27, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 13-48-07).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:48:07, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:48:07, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:49:04, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 13-50-03).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:50:03, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:50:03, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:50:26, Info: Saving project information... 4 | 01/08/2016 13:50:26, Info: Saving project information... 5 | 01/08/2016 13:50:26, Info: Saving project information... 6 | 01/08/2016 13:50:26, Info: Saving project information... 7 | 01/08/2016 13:50:26, Info: Saving project information... 8 | 01/08/2016 13:50:26, Info: Saving project information... 9 | 01/08/2016 13:50:28, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll... 10 | 01/08/2016 13:50:28, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll 11 | 01/08/2016 13:50:28, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.cpz... 12 | 01/08/2016 13:50:29, Info: Saving project information... 13 | 01/08/2016 13:51:10, Info: Terminating SIMPLSharp Services 14 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 13-51-14).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:51:14, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:51:14, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:51:28, Info: Saving project information... 4 | 01/08/2016 13:51:28, Info: Saving project information... 5 | 01/08/2016 13:51:28, Info: Saving project information... 6 | 01/08/2016 13:51:28, Info: Saving project information... 7 | 01/08/2016 13:51:28, Info: Saving project information... 8 | 01/08/2016 13:51:28, Info: Saving project information... 9 | 01/08/2016 13:51:29, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll... 10 | 01/08/2016 13:51:30, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll 11 | 01/08/2016 13:51:30, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.cpz... 12 | 01/08/2016 13:51:30, Info: Saving project information... 13 | 01/08/2016 13:51:43, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll... 14 | 01/08/2016 13:51:43, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll 15 | 01/08/2016 13:51:43, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.cpz... 16 | 01/08/2016 13:51:44, Info: Saving project information... 17 | 01/08/2016 13:54:25, Info: Terminating SIMPLSharp Services 18 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-01 14-00-55).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 14:00:55, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 14:00:55, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:05:41, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-03 09-11-02).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 09:11:02, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 09:11:02, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 09:37:52, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-03 13-51-04).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:51:04, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:51:04, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 17:34:23, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SIMPLSharpLogs/(2016-08-16 06-11-50).log: -------------------------------------------------------------------------------- 1 | 8/16/2016 6:11:50 AM, Info: Initializing SIMPLSharp Services... 2 | 8/16/2016 6:11:50 AM, Info: ProjectInfo successfully initialized. 3 | 8/16/2016 6:19:52 AM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll... 4 | 8/16/2016 6:19:53 AM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll 5 | 8/16/2016 6:19:53 AM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.cpz... 6 | 8/16/2016 6:19:54 AM, Info: Saving project information... 7 | 8/16/2016 10:21:45 AM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll... 8 | 8/16/2016 10:21:45 AM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.dll 9 | 8/16/2016 10:21:45 AM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay1_IR_Versiport_ComPort\SimplSharpDay3\bin\Debug\SimplSharpDay1.cpz... 10 | 8/16/2016 10:21:46 AM, Info: Saving project information... 11 | 8/16/2016 12:43:17 PM, Info: Terminating SIMPLSharp Services 12 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SimplSharpDay1.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SimplSharpDay1.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/SimplSharpDay1.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.DM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.DM.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.EthernetCommunications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.EthernetCommunications.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.Keypads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.Keypads.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/Crestron.SimplSharpPro.UI.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SimplSharpDay1 4 | SimplSharpDay1 5 | SimplSharpDay1 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 8/16/2016 10:21:45 AM 14 | 1.0.0.16852 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.033 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.cpz -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpDay1.pdb -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SimplSharpDay1.dll:4f28c96bc6c24c88682f1d3ea37745b2 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=SimplSharpDay1.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 10 | DependencyPath=SimplSharpDay1.cpz:Crestron.SimplSharpPro.DM.dll 11 | DependencyMainAssembly=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 12 | ü 13 | DependencySource=Crestron.SimplSharpPro.EthernetCommunications.dll:36e663497195140ee6f1b4ebc53f5ea7 14 | DependencyPath=SimplSharpDay1.cpz:Crestron.SimplSharpPro.EthernetCommunications.dll 15 | DependencyMainAssembly=Crestron.SimplSharpPro.EthernetCommunications.dll:36e663497195140ee6f1b4ebc53f5ea7 16 | ü 17 | DependencySource=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 18 | DependencyPath=SimplSharpDay1.cpz:Crestron.SimplSharpPro.Keypads.dll 19 | DependencyMainAssembly=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 20 | ü 21 | DependencySource=Crestron.SimplSharpPro.UI.dll:089312a0cb0b4537072d4eb234e71e0e 22 | DependencyPath=SimplSharpDay1.cpz:Crestron.SimplSharpPro.UI.dll 23 | DependencyMainAssembly=Crestron.SimplSharpPro.UI.dll:089312a0cb0b4537072d4eb234e71e0e 24 | ü 25 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 26 | DependencyPath=SimplSharpDay1.cpz:SimplSharpCustomAttributesInterface.dll 27 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 28 | ü 29 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 30 | DependencyPath=SimplSharpDay1.cpz:SimplSharpHelperInterface.dll 31 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 32 | ü 33 | DependencySource=SimplSharpPro.exe:5c9adce8af54811e5d6f5ae4aaa47d95 34 | DependencyPath=SimplSharpDay1.cpz:SimplSharpPro.exe 35 | DependencyMainAssembly=SimplSharpPro.exe:5c9adce8af54811e5d6f5ae4aaa47d95 36 | -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/SimplSharpDay1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/SimplSharpDay1.dll -------------------------------------------------------------------------------- /SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/SimplSharpDay1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay1_IR_Versiport_ComPort/SimplSharpDay3/obj/Debug/SimplSharpDay1.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataStore", "DataStore\DataStore.csproj", "{AE8C71F8-5A6C-4DFE-B16F-072363AE3070}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {AE8C71F8-5A6C-4DFE-B16F-072363AE3070}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {AE8C71F8-5A6C-4DFE-B16F-072363AE3070}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {AE8C71F8-5A6C-4DFE-B16F-072363AE3070}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {AE8C71F8-5A6C-4DFE-B16F-072363AE3070}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore.suo -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/DataStore.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/DataStore.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/DataStore.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("DataStore")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("DataStore")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/SIMPLSharpLogs/(2016-07-27 11-15-14).log: -------------------------------------------------------------------------------- 1 | 7/27/2016 11:15:14 AM, Info: Initializing SIMPLSharp Services... 2 | 7/27/2016 11:15:14 AM, Info: ProjectInfo successfully initialized. 3 | 7/27/2016 11:15:15 AM, Info: Saving project information... 4 | 7/27/2016 11:15:15 AM, Info: Saving project information... 5 | 7/27/2016 11:15:15 AM, Info: Saving project information... 6 | 7/27/2016 11:15:15 AM, Info: Saving project information... 7 | 7/27/2016 11:15:15 AM, Info: Saving project information... 8 | 7/27/2016 11:15:15 AM, Info: Saving project information... 9 | 7/27/2016 11:37:01 AM, Info: Validating assembly C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\DataStore.dll... 10 | 7/27/2016 11:37:01 AM, Info: Verifying assembly C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\DataStore.dll 11 | 7/27/2016 11:37:01 AM, Info: Creating Archive C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\DataStore.cpz... 12 | 7/27/2016 11:37:02 AM, Info: Saving project information... 13 | 7/27/2016 1:00:40 PM, Info: Terminating SIMPLSharp Services 14 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/SIMPLSharpLogs/(2016-08-01 13-02-50).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:02:50, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:02:50, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:03:10, Info: Saving project information... 4 | 01/08/2016 13:03:10, Info: Saving project information... 5 | 01/08/2016 13:03:10, Info: Saving project information... 6 | 01/08/2016 13:03:10, Info: Terminating SIMPLSharp Services 7 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/SIMPLSharpLogs/(2016-08-03 09-04-16).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 09:04:16, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 09:04:16, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 09:10:55, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/SIMPLSharpLogs/(2016-08-17 06-41-12).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 6:41:12 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 6:41:12 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 9:21:09 AM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.dll... 4 | 8/17/2016 9:21:09 AM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.dll 5 | 8/17/2016 9:21:09 AM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.cpz... 6 | 8/17/2016 9:21:10 AM, Info: Saving project information... 7 | 8/17/2016 9:22:22 AM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.dll... 8 | 8/17/2016 9:22:22 AM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.dll 9 | 8/17/2016 9:22:22 AM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.cpz... 10 | 8/17/2016 9:22:22 AM, Info: Saving project information... 11 | 8/17/2016 9:22:51 AM, Info: Terminating SIMPLSharp Services 12 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/SIMPLSharpLogs/(2016-08-17 09-23-53).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 9:23:53 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 9:23:53 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 12:00:27 PM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.cpz -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.dll -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/DataStore.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | DataStore 4 | DataStore 5 | DataStore 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 8/17/2016 9:22:22 AM 14 | 1.0.0.15033 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.033 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=DataStore.dll:fc9a16a4d030d5ec31d83e292ffd2217 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=DataStore.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 10 | DependencyPath=DataStore.cpz:SimplSharpCustomAttributesInterface.dll 11 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 12 | ü 13 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 14 | DependencyPath=DataStore.cpz:SimplSharpHelperInterface.dll 15 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 16 | ü 17 | DependencySource=SimplSharpPro.exe:9db48cd88113bccc458964d9e6af5725 18 | DependencyPath=DataStore.cpz:SimplSharpPro.exe 19 | DependencyMainAssembly=SimplSharpPro.exe:9db48cd88113bccc458964d9e6af5725 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/obj/Debug/DataStore.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\DataStore.dll 2 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\DataStore.pdb 3 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\Crestron.SimplSharpPro.DeviceSupport.dll 4 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\SimplSharpCustomAttributesInterface.dll 5 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\SimplSharpHelperInterface.dll 6 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\bin\Debug\SimplSharpPro.exe 7 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\obj\Debug\ResolveAssemblyReference.cache 8 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\obj\Debug\DataStore.dll 9 | C:\Training_Classes\S#\S#July262016\DataStore\DataStore\obj\Debug\DataStore.pdb 10 | D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.dll 11 | D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\bin\Debug\DataStore.pdb 12 | D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\obj\Debug\ResolveAssemblyReference.cache 13 | D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\obj\Debug\DataStore.dll 14 | D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_DataStore\DataStore\obj\Debug\DataStore.pdb 15 | -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/obj/Debug/DataStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/obj/Debug/DataStore.dll -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/obj/Debug/DataStore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/obj/Debug/DataStore.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_DataStore/DataStore/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_DataStore/DataStore/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/FileControls.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/FileControls.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/FileControls.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("FileControls")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("FileControls")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-01 12-55-06).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 12:55:06, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 12:55:06, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 12:58:58, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-01 13-47-47).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:47:47, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:47:47, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:49:12, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-01 13-59-09).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:59:09, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:59:09, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:00:45, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll... 4 | 01/08/2016 14:00:45, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll 5 | 01/08/2016 14:00:45, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.clz... 6 | 01/08/2016 14:00:45, Info: Saving project information... 7 | 01/08/2016 14:01:16, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-01 14-01-31).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 14:01:31, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 14:01:31, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:02:54, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll... 4 | 01/08/2016 14:02:54, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll 5 | 01/08/2016 14:02:54, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.clz... 6 | 01/08/2016 14:02:55, Info: Saving project information... 7 | 01/08/2016 14:03:01, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-03 13-23-59).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:23:59, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:23:59, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:27:27, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll... 4 | 03/08/2016 13:27:27, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll 5 | 03/08/2016 13:27:27, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.clz... 6 | 03/08/2016 13:27:27, Info: Saving project information... 7 | 03/08/2016 13:31:23, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll... 8 | 03/08/2016 13:31:23, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.dll 9 | 03/08/2016 13:31:23, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\FileControls\bin\Debug\FileControls.clz... 10 | 03/08/2016 13:31:24, Info: Saving project information... 11 | 03/08/2016 13:36:43, Info: Terminating SIMPLSharp Services 12 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-03 13-37-06).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:37:06, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:37:06, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:41:15, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-17 07-19-27).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 7:19:27 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 7:19:27 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 9:02:28 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/SIMPLSharpLogs/(2016-08-18 04-08-54).log: -------------------------------------------------------------------------------- 1 | 8/18/2016 4:08:54 AM, Info: Initializing SIMPLSharp Services... 2 | 8/18/2016 4:08:54 AM, Info: ProjectInfo successfully initialized. 3 | 8/18/2016 4:18:48 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.clz -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | FileControls 4 | FileControls 5 | FileControls 6 | 1.007.0017 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 03/08/2016 13:31:23 14 | 1.0.0.23422 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/FileControls.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=FileControls.dll:b982133498f342a4dc120e64471e376c 2 | MainAssemblyMinFirmwareVersion=1.007.0017 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 6 | DependencyPath=FileControls.clz:SimplSharpCustomAttributesInterface.dll 7 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 8 | ü 9 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 10 | DependencyPath=FileControls.clz:SimplSharpHelperInterface.dll 11 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 12 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/obj/Debug/FileControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/obj/Debug/FileControls.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/obj/Debug/FileControls.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/obj/Debug/FileControls.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/FileControls/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/FileControls/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SimplSharpDay1")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SimplSharpDay1")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-01 12-55-05).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 12:55:05, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 12:55:06, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 12:58:58, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-01 13-47-46).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:47:46, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:47:46, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:49:12, Info: Saving project information... 4 | 01/08/2016 13:49:12, Info: Saving project information... 5 | 01/08/2016 13:49:12, Info: Saving project information... 6 | 01/08/2016 13:49:12, Info: Saving project information... 7 | 01/08/2016 13:49:12, Info: Saving project information... 8 | 01/08/2016 13:49:12, Info: Saving project information... 9 | 01/08/2016 13:49:12, Info: Terminating SIMPLSharp Services 10 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-01 13-59-08).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:59:08, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:59:08, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:00:44, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay1.dll... 4 | 01/08/2016 14:00:44, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay1.dll 5 | 01/08/2016 14:00:44, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay1.cpz... 6 | 01/08/2016 14:00:45, Info: Saving project information... 7 | 01/08/2016 14:01:16, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-01 14-01-30).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 14:01:30, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 14:01:31, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:02:42, Info: Saving project information... 4 | 01/08/2016 14:02:42, Info: Saving project information... 5 | 01/08/2016 14:02:42, Info: Saving project information... 6 | 01/08/2016 14:02:42, Info: Saving project information... 7 | 01/08/2016 14:02:42, Info: Saving project information... 8 | 01/08/2016 14:02:42, Info: Saving project information... 9 | 01/08/2016 14:02:53, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll... 10 | 01/08/2016 14:02:54, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll 11 | 01/08/2016 14:02:54, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.cpz... 12 | 01/08/2016 14:02:54, Info: Saving project information... 13 | 01/08/2016 14:03:01, Info: Terminating SIMPLSharp Services 14 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-03 13-23-58).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:23:58, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:23:58, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:27:22, Info: Saving project information... 4 | 03/08/2016 13:27:22, Info: Saving project information... 5 | 03/08/2016 13:27:22, Info: Saving project information... 6 | 03/08/2016 13:27:22, Info: Saving project information... 7 | 03/08/2016 13:27:22, Info: Saving project information... 8 | 03/08/2016 13:27:22, Info: Saving project information... 9 | 03/08/2016 13:27:26, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll... 10 | 03/08/2016 13:27:26, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll 11 | 03/08/2016 13:27:26, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.cpz... 12 | 03/08/2016 13:27:27, Info: Saving project information... 13 | 03/08/2016 13:31:22, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll... 14 | 03/08/2016 13:31:22, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.dll 15 | 03/08/2016 13:31:22, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1\bin\Debug\SimplSharpDay2.cpz... 16 | 03/08/2016 13:31:23, Info: Saving project information... 17 | 03/08/2016 13:36:43, Info: Terminating SIMPLSharp Services 18 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-03 13-37-05).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:37:05, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:37:05, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:41:15, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-17 07-19-27).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 7:19:27 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 7:19:27 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 9:02:28 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SIMPLSharpLogs/(2016-08-18 04-08-54).log: -------------------------------------------------------------------------------- 1 | 8/18/2016 4:08:54 AM, Info: Initializing SIMPLSharp Services... 2 | 8/18/2016 4:08:54 AM, Info: ProjectInfo successfully initialized. 3 | 8/18/2016 4:18:48 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SimplSharpDay1.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/SimplSharpDay1.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SimplSharpDay2.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/SimplSharpDay2.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/SimplSharpDay2.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.DM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.DM.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.Keypads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/Crestron.SimplSharpPro.Keypads.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SimplSharpDay2 4 | SimplSharpDay2 5 | SimplSharpDay2 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 03/08/2016 13:31:22 14 | 1.0.0.22541 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.cpz -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpDay2.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SimplSharpDay2.dll:0647d0821480582e11fe37bf8c351529 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=SimplSharpDay2.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 10 | DependencyPath=SimplSharpDay2.cpz:Crestron.SimplSharpPro.DM.dll 11 | DependencyMainAssembly=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 12 | ü 13 | DependencySource=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 14 | DependencyPath=SimplSharpDay2.cpz:Crestron.SimplSharpPro.Keypads.dll 15 | DependencyMainAssembly=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 16 | ü 17 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 18 | DependencyPath=SimplSharpDay2.cpz:SimplSharpCustomAttributesInterface.dll 19 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 20 | ü 21 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 22 | DependencyPath=SimplSharpDay2.cpz:SimplSharpHelperInterface.dll 23 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 24 | ü 25 | DependencySource=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 26 | DependencyPath=SimplSharpDay2.cpz:SimplSharpPro.exe 27 | DependencyMainAssembly=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 28 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay1.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay1.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay2.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1/obj/Debug/SimplSharpDay2.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SimplSharpDay1Reusable")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SimplSharpDay1Reusable")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/FileControls.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/FileControls.clz -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/FileControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/FileControls.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/References/FileControls.clz/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-01 12-55-06).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 12:55:06, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 12:55:06, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 12:58:58, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-01 13-47-47).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:47:47, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:47:47, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:49:12, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-01 13-59-09).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:59:09, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:59:09, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:00:43, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay1Reusable.dll... 4 | 01/08/2016 14:00:43, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay1Reusable.dll 5 | 01/08/2016 14:00:43, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay1Reusable.cpz... 6 | 01/08/2016 14:00:43, Info: Saving project information... 7 | 01/08/2016 14:01:16, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-01 14-01-31).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 14:01:31, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 14:01:31, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:02:42, Info: Saving project information... 4 | 01/08/2016 14:02:42, Info: Saving project information... 5 | 01/08/2016 14:02:42, Info: Saving project information... 6 | 01/08/2016 14:02:42, Info: Saving project information... 7 | 01/08/2016 14:02:42, Info: Saving project information... 8 | 01/08/2016 14:02:42, Info: Saving project information... 9 | 01/08/2016 14:02:52, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll... 10 | 01/08/2016 14:02:52, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll 11 | 01/08/2016 14:02:52, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.cpz... 12 | 01/08/2016 14:02:53, Info: Saving project information... 13 | 01/08/2016 14:02:53, Info: Saving project information... 14 | 01/08/2016 14:02:53, Info: Saving project information... 15 | 01/08/2016 14:02:53, Info: Saving project information... 16 | 01/08/2016 14:02:53, Info: Saving project information... 17 | 01/08/2016 14:02:53, Info: Saving project information... 18 | 01/08/2016 14:02:53, Info: Saving project information... 19 | 01/08/2016 14:03:01, Info: Terminating SIMPLSharp Services 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-03 13-23-59).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:23:59, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:23:59, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:27:22, Info: Saving project information... 4 | 03/08/2016 13:27:22, Info: Saving project information... 5 | 03/08/2016 13:27:22, Info: Saving project information... 6 | 03/08/2016 13:27:22, Info: Saving project information... 7 | 03/08/2016 13:27:22, Info: Saving project information... 8 | 03/08/2016 13:27:22, Info: Saving project information... 9 | 03/08/2016 13:27:24, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll... 10 | 03/08/2016 13:27:24, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll 11 | 03/08/2016 13:27:25, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.cpz... 12 | 03/08/2016 13:27:25, Info: Saving project information... 13 | 03/08/2016 13:31:21, Info: Validating assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll... 14 | 03/08/2016 13:31:21, Info: Verifying assembly C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.dll 15 | 03/08/2016 13:31:21, Info: Creating Archive C:\Users\MBackler\BitTorrent Sync\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay2_FileHandling\SimplSharpDay1Reusable\bin\Debug\SimplSharpDay2Reusable.cpz... 16 | 03/08/2016 13:31:21, Info: Saving project information... 17 | 03/08/2016 13:36:43, Info: Terminating SIMPLSharp Services 18 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-03 13-37-06).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 13:37:06, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 13:37:06, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 13:41:15, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-17 07-19-27).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 7:19:27 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 7:19:27 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 9:02:28 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SIMPLSharpLogs/(2016-08-18 04-08-54).log: -------------------------------------------------------------------------------- 1 | 8/18/2016 4:08:54 AM, Info: Initializing SIMPLSharp Services... 2 | 8/18/2016 4:08:54 AM, Info: ProjectInfo successfully initialized. 3 | 8/18/2016 4:18:48 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SimplSharpDay1Reusable.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SimplSharpDay1Reusable.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SimplSharpDay2Reusable.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SimplSharpDay2Reusable.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/SimplSharpDay2Reusable.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.DM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.DM.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.Keypads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/Crestron.SimplSharpPro.Keypads.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/FileControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/FileControls.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SimplSharpDay2Reusab 4 | SimplSharpDay2Reusable 5 | SimplSharpDay2Reusable 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 03/08/2016 13:31:21 14 | 1.0.0.22421 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.cpz -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpDay2Reusable.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SimplSharpDay2Reusable.dll:60679b358725365a118631ac1e1bdae6 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=SimplSharpDay2Reusable.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 10 | DependencyPath=SimplSharpDay2Reusable.cpz:Crestron.SimplSharpPro.DM.dll 11 | DependencyMainAssembly=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 12 | ü 13 | DependencySource=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 14 | DependencyPath=SimplSharpDay2Reusable.cpz:Crestron.SimplSharpPro.Keypads.dll 15 | DependencyMainAssembly=Crestron.SimplSharpPro.Keypads.dll:3209065e441aeeeece1815f664f7d563 16 | ü 17 | DependencySource=FileControls.dll:48c07287c833afcf5899d137f86beb6d 18 | DependencyPath=SimplSharpDay2Reusable.cpz:FileControls.dll 19 | DependencyMainAssembly=FileControls.dll:48c07287c833afcf5899d137f86beb6d 20 | ü 21 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 22 | DependencyPath=SimplSharpDay2Reusable.cpz:SimplSharpCustomAttributesInterface.dll 23 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 24 | ü 25 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 26 | DependencyPath=SimplSharpDay2Reusable.cpz:SimplSharpHelperInterface.dll 27 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 28 | ü 29 | DependencySource=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 30 | DependencyPath=SimplSharpDay2Reusable.cpz:SimplSharpPro.exe 31 | DependencyMainAssembly=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 32 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay1Reusable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay1Reusable.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay1Reusable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay1Reusable.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay2Reusable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay2Reusable.dll -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay2Reusable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay1Reusable/obj/Debug/SimplSharpDay2Reusable.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimplSharpDay2", "SimplSharpDay1\SimplSharpDay2.csproj", "{0C8EF624-11D1-4BA3-9D04-EF8B442A7218}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimplSharpDay2Reusable", "SimplSharpDay1Reusable\SimplSharpDay2Reusable.csproj", "{6923E7A2-0D32-4071-BBB6-24AE10AE1E38}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileControls", "FileControls\FileControls.csproj", "{4137782D-4E08-4918-BFF9-F90C64797A58}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {0C8EF624-11D1-4BA3-9D04-EF8B442A7218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {0C8EF624-11D1-4BA3-9D04-EF8B442A7218}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {0C8EF624-11D1-4BA3-9D04-EF8B442A7218}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {0C8EF624-11D1-4BA3-9D04-EF8B442A7218}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {6923E7A2-0D32-4071-BBB6-24AE10AE1E38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {6923E7A2-0D32-4071-BBB6-24AE10AE1E38}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {6923E7A2-0D32-4071-BBB6-24AE10AE1E38}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {6923E7A2-0D32-4071-BBB6-24AE10AE1E38}.Release|Any CPU.Build.0 = Release|Any CPU 24 | {4137782D-4E08-4918-BFF9-F90C64797A58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 25 | {4137782D-4E08-4918-BFF9-F90C64797A58}.Debug|Any CPU.Build.0 = Debug|Any CPU 26 | {4137782D-4E08-4918-BFF9-F90C64797A58}.Release|Any CPU.ActiveCfg = Release|Any CPU 27 | {4137782D-4E08-4918-BFF9-F90C64797A58}.Release|Any CPU.Build.0 = Release|Any CPU 28 | EndGlobalSection 29 | GlobalSection(SolutionProperties) = preSolution 30 | HideSolutionNode = FALSE 31 | EndGlobalSection 32 | EndGlobal 33 | -------------------------------------------------------------------------------- /SimplSharpDay2_FileHandling/SimplSharpDay2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_FileHandling/SimplSharpDay2.suo -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SSHClient", "SSHClient\SSHClient.csproj", "{09EC558A-0BA8-48AF-81C4-D0A4FD19E2C9}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {09EC558A-0BA8-48AF-81C4-D0A4FD19E2C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {09EC558A-0BA8-48AF-81C4-D0A4FD19E2C9}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {09EC558A-0BA8-48AF-81C4-D0A4FD19E2C9}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {09EC558A-0BA8-48AF-81C4-D0A4FD19E2C9}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient.suo -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/KeyboardInteractive.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using Crestron.SimplSharp; 6 | using Crestron.SimplSharp.Ssh; 7 | 8 | namespace SSHClient 9 | { 10 | public class KeyboardInteractive 11 | { 12 | ConnectionInfo = new KeyboardInteractiveConnectionInfo(address, (port > 0 ? port : 22), LoginUser); 13 | ConnectionInfo.AuthenticationPrompt += delegate(object sender, AuthenticationPromptEventArgs e) 14 | { 15 | //CrestronConsole.PrintLine("Got Auth Prompt"); 16 | foreach (var prompt in e.Prompts) 17 | { 18 | if (prompt.Request.Equals("Password: ", StringComparison.InvariantCultureIgnoreCase)) 19 | { 20 | //CrestronConsole.PrintLine(prompt.Request); 21 | //CrestronConsole.PrintLine(LoginPassword); 22 | prompt.Response = LoginPassword; 23 | } 24 | } 25 | }; 26 | } 27 | } -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SSHClient")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SSHClient")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SIMPLSharpLogs/(2016-08-01 13-23-34).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:23:34, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:23:34, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:23:54, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SIMPLSharpLogs/(2016-08-01 13-26-36).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:26:36, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:26:36, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:26:41, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SIMPLSharpLogs/(2016-08-01 14-36-25).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 14:36:25, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 14:36:25, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 14:41:23, Info: Saving project information... 4 | 01/08/2016 14:41:23, Info: Saving project information... 5 | 01/08/2016 14:41:23, Info: Saving project information... 6 | 01/08/2016 14:41:23, Info: Saving project information... 7 | 01/08/2016 14:41:23, Info: Saving project information... 8 | 01/08/2016 14:41:23, Info: Saving project information... 9 | 01/08/2016 14:41:23, Info: Terminating SIMPLSharp Services 10 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SIMPLSharpLogs/(2016-08-17 10-18-36).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 10:18:36 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 10:18:36 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 11:55:37 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SSHClient.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/SSHClient.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/SSHClient.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.clz -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SSHClient 4 | SSHClient 5 | SSHClient 6 | 1.007.0017 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 27/07/2016 13:50:14 14 | 1.0.0.23106 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.41.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SSHClient.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SSHClient.dll:a4ca497d2bf94fd74fdc0607f4aae95d 2 | MainAssemblyMinFirmwareVersion=1.007.0017 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 6 | DependencyPath=SimplSharpHelperInterface.dll 7 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 8 | ü 9 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 10 | DependencyPath=SimplSharpCustomAttributesInterface.dll 11 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 12 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/obj/Debug/SSHClient.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\bin\Debug\SSHClient.dll 2 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\bin\Debug\SSHClient.pdb 3 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\bin\Debug\SimplSharpCustomAttributesInterface.dll 4 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\bin\Debug\SimplSharpHelperInterface.dll 5 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\obj\Debug\ResolveAssemblyReference.cache 6 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\obj\Debug\SSHClient.dll 7 | C:\Users\MBackler\BitTorrent Sync\Sync\Programming\Simpl#Pro\SSHClient\SSHClient\obj\Debug\SSHClient.pdb 8 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/obj/Debug/SSHClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/obj/Debug/SSHClient.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClient/SSHClient/obj/Debug/SSHClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClient/SSHClient/obj/Debug/SSHClient.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SSHClientProcessorCode", "SSHClientProcessorCode\SSHClientProcessorCode.csproj", "{64A80512-B21D-441A-A450-058D366473DB}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {64A80512-B21D-441A-A450-058D366473DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {64A80512-B21D-441A-A450-058D366473DB}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {64A80512-B21D-441A-A450-058D366473DB}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {64A80512-B21D-441A-A450-058D366473DB}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode.suo -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SSHClientProcessorCode")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SSHClientProcessorCode")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SSHClient.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SSHClient.clz -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SSHClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SSHClient.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/References/SSHClient.clz/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/SIMPLSharpLogs/(2016-08-17 10-19-12).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 10:19:12 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 10:19:12 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 10:24:10 AM, Info: Saving project information... 4 | 8/17/2016 10:24:10 AM, Info: Saving project information... 5 | 8/17/2016 10:24:10 AM, Info: Saving project information... 6 | 8/17/2016 10:29:10 AM, Info: Saving project information... 7 | 8/17/2016 10:29:10 AM, Info: Saving project information... 8 | 8/17/2016 10:29:10 AM, Info: Saving project information... 9 | 8/17/2016 10:34:10 AM, Info: Saving project information... 10 | 8/17/2016 10:34:10 AM, Info: Saving project information... 11 | 8/17/2016 10:34:10 AM, Info: Saving project information... 12 | 8/17/2016 10:39:10 AM, Info: Saving project information... 13 | 8/17/2016 10:39:10 AM, Info: Saving project information... 14 | 8/17/2016 10:39:10 AM, Info: Saving project information... 15 | 8/17/2016 10:44:10 AM, Info: Saving project information... 16 | 8/17/2016 10:44:10 AM, Info: Saving project information... 17 | 8/17/2016 10:44:10 AM, Info: Saving project information... 18 | 8/17/2016 10:45:10 AM, Info: Saving project information... 19 | 8/17/2016 10:45:10 AM, Info: Saving project information... 20 | 8/17/2016 10:45:10 AM, Info: Saving project information... 21 | 8/17/2016 10:45:10 AM, Info: Saving project information... 22 | 8/17/2016 10:45:10 AM, Info: Saving project information... 23 | 8/17/2016 10:45:10 AM, Info: Saving project information... 24 | 8/17/2016 10:45:11 AM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_SSHClientProcessorCode\SSHClientProcessorCode\bin\Debug\SSHClientProcessorCode.dll... 25 | 8/17/2016 10:45:11 AM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_SSHClientProcessorCode\SSHClientProcessorCode\bin\Debug\SSHClientProcessorCode.dll 26 | 8/17/2016 10:45:11 AM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\August32016\SimplSharpCertification\Example Code\SimplSharpDay2_SSHClientProcessorCode\SSHClientProcessorCode\bin\Debug\SSHClientProcessorCode.cpz... 27 | 8/17/2016 10:45:12 AM, Info: Saving project information... 28 | 8/17/2016 11:55:43 AM, Info: Terminating SIMPLSharp Services 29 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/SSHClientProcessorCode.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/SSHClientProcessorCode.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/SSHClientProcessorCode.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SSHClientProcessorCo 4 | SSHClientProcessorCode 5 | SSHClientProcessorCode 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 8/17/2016 10:45:11 AM 14 | 1.0.0.17555 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.033 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClient.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.cpz -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SSHClientProcessorCode.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SSHClientProcessorCode.dll:b80eb6d6380514039e21039177df85b4 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=SSHClientProcessorCode.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 10 | DependencyPath=SSHClientProcessorCode.cpz:SimplSharpCustomAttributesInterface.dll 11 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 12 | ü 13 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 14 | DependencyPath=SSHClientProcessorCode.cpz:SimplSharpHelperInterface.dll 15 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 16 | ü 17 | DependencySource=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 18 | DependencyPath=SSHClientProcessorCode.cpz:SimplSharpPro.exe 19 | DependencyMainAssembly=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 20 | ü 21 | DependencySource=SSHClient.dll:a4ca497d2bf94fd74fdc0607f4aae95d 22 | DependencyPath=SSHClientProcessorCode.cpz:SSHClient.dll 23 | DependencyMainAssembly=SSHClient.dll:a4ca497d2bf94fd74fdc0607f4aae95d 24 | -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/SSHClientProcessorCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/SSHClientProcessorCode.dll -------------------------------------------------------------------------------- /SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/SSHClientProcessorCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_SSHClientProcessorCode/SSHClientProcessorCode/obj/Debug/SSHClientProcessorCode.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThreadSync", "ThreadSync\ThreadSync.csproj", "{4AACE202-A8EC-4F3F-A72C-85F05853FF12}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {4AACE202-A8EC-4F3F-A72C-85F05853FF12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {4AACE202-A8EC-4F3F-A72C-85F05853FF12}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {4AACE202-A8EC-4F3F-A72C-85F05853FF12}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {4AACE202-A8EC-4F3F-A72C-85F05853FF12}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync.suo -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("ThreadSync")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("ThreadSync")] 6 | [assembly: AssemblyCopyright("Copyright © 2015")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/SIMPLSharpLogs/(2016-08-01 13-00-12).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:00:12, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:00:12, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:00:52, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/SIMPLSharpLogs/(2016-08-17 04-22-35).log: -------------------------------------------------------------------------------- 1 | 8/17/2016 4:22:35 AM, Info: Initializing SIMPLSharp Services... 2 | 8/17/2016 4:22:35 AM, Info: ProjectInfo successfully initialized. 3 | 8/17/2016 6:23:06 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/ThreadSync.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/ThreadSync.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/ThreadSync.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | ThreadSync 4 | ThreadSync 5 | ThreadSync 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 3/22/2016 9:37:18 AM 14 | 1.0.0.15513 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.41.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.018 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.cpz -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.dll -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/ThreadSync.pdb -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=ThreadSync.dll:ce51dd09991f4962850dd29958681346 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 10 | DependencyPath=SimplSharpCustomAttributesInterface.dll 11 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 12 | ü 13 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 14 | DependencyPath=SimplSharpHelperInterface.dll 15 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 16 | ü 17 | DependencySource=SimplSharpPro.exe:b0cb87fb9e715873397b2524199c6428 18 | DependencyPath=SimplSharpPro.exe 19 | DependencyMainAssembly=SimplSharpPro.exe:b0cb87fb9e715873397b2524199c6428 20 | -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/bin/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/bin/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ThreadSync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ThreadSync.dll -------------------------------------------------------------------------------- /SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ThreadSync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay2_ThreadSync/ThreadSync/obj/Debug/ThreadSync.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/BuiltInScheduler SSP.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | 6 | false 7 | Project 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/BuiltInScheduler SSP.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/BuiltInScheduler SSP.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("BuiltInScheduler_SSP")] 4 | [assembly: AssemblyCompany("Microsoft")] 5 | [assembly: AssemblyProduct("BuiltInScheduler_SSP")] 6 | [assembly: AssemblyCopyright("Copyright © Microsoft 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- 1 |  2 | 3 | CP3 4 |
ssh 10.141.85.98
5 | Program01 6 | Internal Flash 7 |
-------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/BuiltInScheduler.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/BuiltInScheduler.clz -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpTimerEventInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/References/BuiltInScheduler.clz/SimplSharpTimerEventInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/SIMPLSharpLogs/(2016-07-28 09-11-51).log: -------------------------------------------------------------------------------- 1 | 7/28/2016 9:11:51 AM, Info: Initializing SIMPLSharp Services... 2 | 7/28/2016 9:11:51 AM, Info: ProjectInfo successfully initialized. 3 | 7/28/2016 9:16:48 AM, Info: Saving project information... 4 | 7/28/2016 9:16:48 AM, Info: Saving project information... 5 | 7/28/2016 9:16:48 AM, Info: Saving project information... 6 | 7/28/2016 9:21:48 AM, Info: Saving project information... 7 | 7/28/2016 9:21:48 AM, Info: Saving project information... 8 | 7/28/2016 9:21:48 AM, Info: Saving project information... 9 | 7/28/2016 9:23:43 AM, Info: Saving project information... 10 | 7/28/2016 9:23:43 AM, Info: Saving project information... 11 | 7/28/2016 9:23:43 AM, Info: Saving project information... 12 | 7/28/2016 9:23:43 AM, Info: Saving project information... 13 | 7/28/2016 9:23:43 AM, Info: Saving project information... 14 | 7/28/2016 9:23:43 AM, Info: Saving project information... 15 | 7/28/2016 9:23:43 AM, Info: Terminating SIMPLSharp Services 16 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/SIMPLSharpLogs/(2016-08-01 13-29-03).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:29:03, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:29:03, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:31:57, Info: Validating assembly F:\Downloads\Simpl# Training\S#July262016\S#July262016\E6_BuiltInScheduler\BuiltInScheduler SSP\bin\Debug\BuiltInScheduler SSP.dll... 4 | 01/08/2016 13:31:57, Info: Verifying assembly F:\Downloads\Simpl# Training\S#July262016\S#July262016\E6_BuiltInScheduler\BuiltInScheduler SSP\bin\Debug\BuiltInScheduler SSP.dll 5 | 01/08/2016 13:31:57, Info: Creating Archive F:\Downloads\Simpl# Training\S#July262016\S#July262016\E6_BuiltInScheduler\BuiltInScheduler SSP\bin\Debug\BuiltInScheduler SSP.cpz... 6 | 01/08/2016 13:31:58, Info: Saving project information... 7 | 01/08/2016 13:33:07, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/SIMPLSharpLogs/(2016-08-01 13-58-35).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:58:35, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:58:35, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:58:56, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/SIMPLSharpLogs/(2016-08-18 04-02-36).log: -------------------------------------------------------------------------------- 1 | 8/18/2016 4:02:36 AM, Info: Initializing SIMPLSharp Services... 2 | 8/18/2016 4:02:36 AM, Info: ProjectInfo successfully initialized. 3 | 8/18/2016 7:28:12 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.cpz -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler SSP.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | BuiltInScheduler_SSP 4 | BuiltInScheduler SSP 5 | BuiltInScheduler SSP 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 01/08/2016 13:31:57 14 | 1.0.0.22558 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.024 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpTimerEventInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/SimplSharpTimerEventInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=BuiltInScheduler SSP.dll:8c34d731ce851bef5616045df1b9d743 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=BuiltInScheduler.dll:0f153c92e651850ee82b2f6380a36ab8 6 | DependencyPath=BuiltInScheduler SSP.cpz:BuiltInScheduler.dll 7 | DependencyMainAssembly=BuiltInScheduler.dll:0f153c92e651850ee82b2f6380a36ab8 8 | ü 9 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 10 | DependencyPath=BuiltInScheduler SSP.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 11 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 12 | ü 13 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 14 | DependencyPath=BuiltInScheduler SSP.cpz:SimplSharpCustomAttributesInterface.dll 15 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 16 | ü 17 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 18 | DependencyPath=BuiltInScheduler SSP.cpz:SimplSharpHelperInterface.dll 19 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 20 | ü 21 | DependencySource=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 22 | DependencyPath=BuiltInScheduler SSP.cpz:SimplSharpPro.exe 23 | DependencyMainAssembly=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 24 | ü 25 | DependencySource=SimplSharpTimerEventInterface.dll:3e25183cfd3a2ea6232e3c58bd7a31fd 26 | DependencyPath=BuiltInScheduler SSP.cpz:SimplSharpTimerEventInterface.dll 27 | DependencyMainAssembly=SimplSharpTimerEventInterface.dll:3e25183cfd3a2ea6232e3c58bd7a31fd 28 | ü 29 | DependencySource=system.data.sqlclient.dll:35e4a666fc52cf9102a2cf491f1d001d 30 | DependencyPath=BuiltInScheduler SSP.cpz:system.data.sqlclient.dll 31 | DependencyMainAssembly=system.data.sqlclient.dll:35e4a666fc52cf9102a2cf491f1d001d 32 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/system.data.sqlclient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/Debug/system.data.sqlclient.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/BuiltInScheduler SSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/BuiltInScheduler SSP.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/BuiltInScheduler SSP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/BuiltInScheduler SSP.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler SSP/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuiltInScheduler", "BuiltInScheduler\BuiltInScheduler.csproj", "{8FA02719-3626-4E1A-A05A-083D7E186D0F}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuiltInScheduler SSP", "BuiltInScheduler SSP\BuiltInScheduler SSP.csproj", "{0534DFE5-C151-40B4-A938-396532AD2967}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8FA02719-3626-4E1A-A05A-083D7E186D0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8FA02719-3626-4E1A-A05A-083D7E186D0F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8FA02719-3626-4E1A-A05A-083D7E186D0F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8FA02719-3626-4E1A-A05A-083D7E186D0F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {0534DFE5-C151-40B4-A938-396532AD2967}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {0534DFE5-C151-40B4-A938-396532AD2967}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {0534DFE5-C151-40B4-A938-396532AD2967}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {0534DFE5-C151-40B4-A938-396532AD2967}.Release|Any CPU.Build.0 = Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler.suo -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/BuiltInScheduler.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/BuiltInScheduler.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/BuiltInScheduler.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("BuiltInScheduler")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("BuiltInScheduler")] 6 | [assembly: AssemblyCopyright("Copyright © 2015")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/BuiltInScheduler.h: -------------------------------------------------------------------------------- 1 | namespace CTI; 2 | // class declarations 3 | class BuiltInSchedulerExample; 4 | class BuiltInSchedulerExample 5 | { 6 | // class delegates 7 | delegate FUNCTION SetRelay ( INTEGER rlyNo ); 8 | 9 | // class events 10 | 11 | // class functions 12 | FUNCTION Clear (); 13 | FUNCTION Ack (); 14 | FUNCTION InitializeStuff (); 15 | STRING_FUNCTION ToString (); 16 | SIGNED_LONG_INTEGER_FUNCTION GetHashCode (); 17 | 18 | // class variables 19 | INTEGER __class_id__; 20 | 21 | // class properties 22 | DelegateProperty SetRelay SetRelayDelegate; 23 | }; 24 | 25 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/BuiltInScheduler.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/BuiltInScheduler.inf -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpTimerEventInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/SimplSharpTimerEventInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/Version.ini: -------------------------------------------------------------------------------- 1 | [Version] 2 | Include.dat=2.13.04 3 | Include.dat (PRO2)=1.77 4 | Include.dat (PRO3)=2.04.004 5 | Min3SeriesFirmware=1.007.0017 6 | Min3SeriesInclude=2.00.010 7 | Min3SeriesSMW=4.02.16 8 | MinimumCDSVersion=1.08.185 9 | Min3SeriesS#Firmware=1.007.0017 10 | Min3SeriesSSPFirmware=1.009.0029 11 | 12 | [Extract] 13 | File1=Library.c 14 | File2=Library.h 15 | File3=Globals.c 16 | File4=SimplSig.h 17 | File5=sbc5307.ld 18 | File6=bigram.ld 19 | File7=FnctList.h 20 | File8=typedefs.h 21 | File9=library_inline.c 22 | File10=library_inline.h 23 | 24 | [Header] 25 | File1=AddHeader.exe 26 | 27 | [Cleanup] 28 | File1=Library.c 29 | File2=Library.o 30 | File3=Library.h 31 | File4=Library.lis 32 | File5=Globals.c 33 | File6=Globals.o 34 | File7=Globals.h 35 | File8=Globals.lis 36 | File9=SimplSig.h 37 | File10=sbc5307.ld 38 | File11=bigram.ld 39 | File12=FnctList.h 40 | File13=typedefs.h 41 | File14=makefile 42 | File15=AddHeader.exe 43 | File16=library_inline.c 44 | File17=library_inline.h 45 | 46 | [ExtractLogos] 47 | File1=SplusLibrary.dll 48 | File2=SplusObjects.dll 49 | File3=NVRamUtility.exe 50 | File4=ManagedUtilities.dll 51 | File5=ManagedUtilitiesCE.dll 52 | File6=SmartThreadPoolCE.dll 53 | File7=SimplSharpHelperInterface.dll 54 | File8=SPlusHeader.exe 55 | File9=Newtonsoft.Json.Compact.dll 56 | File10=SimplSharpCustomAttributesInterface.dll 57 | 58 | 59 | [ExtractLogosUtilityFiles] 60 | File1=Utilities.dll 61 | 62 | [ExtractAdditionalLogos] 63 | File1=SplusManagerApp.exe 64 | File2=SplusLibrary.dll 65 | File3=SplusObjects.dll 66 | File4=SimplSharpHelperInterface.dll 67 | File5=SimplSharpCustomAttributesInterface.dll 68 | File6=SimplSharpData.dat 69 | 70 | 71 | 72 | [CleanupLogos] 73 | 74 | 75 | [CleanupAdditionalLogos] 76 | File1=SplusLibrary.dll 77 | File2=SplusObjects.dll 78 | File3=SplusManagerApp.exe 79 | File4=NVRamUtility.exe 80 | File5=ManagedUtilities.dll 81 | File6=ManagedUtilitiesCE.dll 82 | File7=SmartThreadPoolCE.dll 83 | File8=SimplSharpHelperInterface.dll 84 | File9=SplusHeader.exe 85 | File10=Newtonsoft.Json.Compact.dll 86 | File11=Utilities.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/doIt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/doIt.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/doIt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SPlsWork/doIt.inf -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler.lpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler.lpz -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler.sig -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler_archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler_archive.zip -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler_compiled.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/Scheduler_compiled.zip -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SimplSharpTimerEventInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/SimplSharpTimerEventInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/doIt.ush: -------------------------------------------------------------------------------- 1 | [BEGIN] 2 | Version=1 3 | [END] 4 | [BEGIN] 5 | ObjTp=FSgntr 6 | Sgntr=UserSPlus 7 | RelVrs=1 8 | IntStrVrs=1 9 | SPlusVrs=4.03.16 10 | CrossCplrVrs=1.3 11 | [END] 12 | [BEGIN] 13 | ObjTp=Hd 14 | IncludePath1=..\bin 15 | [END] 16 | [BEGIN] 17 | ObjTp=Symbol 18 | Exclusions=1,19,20,21,88,89,167,168,179,213,214,215,216,217,225,226,248,249,266,267,310,362,378,380,405,407,408,409,478,522,537,554,586,590,611,624,718,756,767,830,841,842,854,883,955,1032,1062,1079,1128,1129,1134,1140,1157,1158,1195,1199,1220,1221,1222,1223,1299,1348,1349,1439,1472,1473,1499,1746,1803,1975,2229,2354,2514,2523,2532,2706,2707,3235,3236,3427,3454,3567,3568,3601,3602,3708,3902,3903,3912,3918,3925,3926,4206,4207, 19 | Exclusions_CDS=5 20 | Inclusions_CDS=6 21 | Name=doIt 22 | SmplCName=doIt.usp 23 | Code=1 24 | SysRev5=1.019 25 | SMWRev=3.00.00 26 | InputCue1=Init 27 | InputSigType1=Digital 28 | InputCue2=ClearAll 29 | InputSigType2=Digital 30 | InputCue3=Ack 31 | InputSigType3=Digital 32 | OutputCue1=Relay1 33 | OutputSigType1=Digital 34 | OutputCue2=Relay2 35 | OutputSigType2=Digital 36 | ParamCue1=[Reference Name] 37 | MinVariableInputs=3 38 | MaxVariableInputs=3 39 | MinVariableInputsList2=0 40 | MaxVariableInputsList2=0 41 | MinVariableOutputs=2 42 | MaxVariableOutputs=2 43 | MinVariableOutputsList2=0 44 | MaxVariableOutputsList2=0 45 | MinVariableParams=0 46 | MaxVariableParams=0 47 | Expand=expand_separately 48 | Expand2=expand_separately 49 | ProgramTree=Logic 50 | SymbolTree=32 51 | Hint= 52 | PdfHelp= 53 | HelpID= 54 | Render=4 55 | Smpl-C=16 56 | CompilerCode=-48 57 | CompilerParamCode=27 58 | CompilerParamCode5=14 59 | NumFixedParams=1 60 | Pp1=1 61 | MPp=1 62 | NVStorage=10 63 | ParamSigType1=String 64 | SmplCInputCue1=o# 65 | SmplCOutputCue1=i# 66 | SmplCInputList2Cue1=an# 67 | SmplCOutputList2Cue1=ai# 68 | SPlus2CompiledName=S2_doIt 69 | SymJam=NonExclusive 70 | FileName=doIt.ush 71 | SIMPLPlusModuleEncoding=0 72 | clz1=BuiltInScheduler 73 | [END] 74 | [BEGIN] 75 | ObjTp=Dp 76 | H=1 77 | Tp=1 78 | NoS=False 79 | [END] 80 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPL Windows/doIt.usp: -------------------------------------------------------------------------------- 1 | DIGITAL_INPUT Init, ClearAll, Ack; 2 | DIGITAL_OUTPUT Relay1, Relay2; 3 | 4 | #INCLUDEPATH "..\bin" 5 | #USER_SIMPLSHARP_LIBRARY "BuiltInScheduler" 6 | 7 | INTEGER x; 8 | BuiltInSchedulerExample myScheduler; 9 | 10 | CALLBACK Function SetRelay(INTEGER rlyNo) 11 | { 12 | IF (rlyNo = 1) 13 | { 14 | Relay1 = 1; 15 | delay(50); 16 | Relay1 = 0; 17 | } 18 | IF (rlyNo = 2) 19 | { 20 | Relay2 = 1; 21 | delay(50); 22 | Relay2 = 0; 23 | } 24 | } 25 | 26 | PUSH Init 27 | { 28 | myScheduler.InitializeStuff(); 29 | } 30 | 31 | PUSH ClearAll 32 | { 33 | myScheduler.Clear(); 34 | } 35 | 36 | PUSH Ack 37 | { 38 | myScheduler.Ack(); 39 | } 40 | 41 | function Main() 42 | { 43 | RegisterDelegate(myScheduler, SetRelayDelegate, SetRelay); 44 | } 45 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPLSharpLogs/(2016-07-28 09-11-50).log: -------------------------------------------------------------------------------- 1 | 7/28/2016 9:11:50 AM, Info: Initializing SIMPLSharp Services... 2 | 7/28/2016 9:11:50 AM, Info: ProjectInfo successfully initialized. 3 | 7/28/2016 9:16:48 AM, Info: Saving project information... 4 | 7/28/2016 9:16:48 AM, Info: Saving project information... 5 | 7/28/2016 9:16:48 AM, Info: Saving project information... 6 | 7/28/2016 9:21:48 AM, Info: Saving project information... 7 | 7/28/2016 9:21:48 AM, Info: Saving project information... 8 | 7/28/2016 9:21:48 AM, Info: Saving project information... 9 | 7/28/2016 9:23:43 AM, Info: Saving project information... 10 | 7/28/2016 9:23:43 AM, Info: Saving project information... 11 | 7/28/2016 9:23:43 AM, Info: Saving project information... 12 | 7/28/2016 9:23:43 AM, Info: Saving project information... 13 | 7/28/2016 9:23:43 AM, Info: Saving project information... 14 | 7/28/2016 9:23:43 AM, Info: Saving project information... 15 | 7/28/2016 9:23:43 AM, Info: Terminating SIMPLSharp Services 16 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPLSharpLogs/(2016-08-01 13-58-35).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:58:35, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:58:35, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:58:47, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_BuiltInScheduler\BuiltInScheduler\bin\BuiltInScheduler.dll... 4 | 01/08/2016 13:58:47, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_BuiltInScheduler\BuiltInScheduler\bin\BuiltInScheduler.dll 5 | 01/08/2016 13:58:47, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_BuiltInScheduler\BuiltInScheduler\bin\BuiltInScheduler.clz... 6 | 01/08/2016 13:58:48, Info: Saving project information... 7 | 01/08/2016 13:58:56, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/SIMPLSharpLogs/(2016-08-18 04-02-31).log: -------------------------------------------------------------------------------- 1 | 8/18/2016 4:02:31 AM, Info: Initializing SIMPLSharp Services... 2 | 8/18/2016 4:02:32 AM, Info: ProjectInfo successfully initialized. 3 | 8/18/2016 7:28:12 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.clz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.clz -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | BuiltInScheduler 4 | BuiltInScheduler 5 | BuiltInScheduler 6 | 1.007.0017 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 01/08/2016 13:58:47 14 | 1.0.0.22517 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.024 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/BuiltInScheduler.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpTimerEventInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/SimplSharpTimerEventInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=BuiltInScheduler.dll:0f153c92e651850ee82b2f6380a36ab8 2 | MainAssemblyMinFirmwareVersion=1.007.0017 3 | MainAssemblyResource=ProjectInfo.dat:b914db882377c8784ffe009435135e82 4 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 5 | ü 6 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 7 | DependencyPath=BuiltInScheduler.clz:SimplSharpCustomAttributesInterface.dll 8 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 9 | ü 10 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 11 | DependencyPath=BuiltInScheduler.clz:SimplSharpHelperInterface.dll 12 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 13 | ü 14 | DependencySource=SimplSharpTimerEventInterface.dll:54369cdd819da5a88ae6de718a19ba62 15 | DependencyPath=BuiltInScheduler.clz:SimplSharpTimerEventInterface.dll 16 | DependencyMainAssembly=SimplSharpTimerEventInterface.dll:54369cdd819da5a88ae6de718a19ba62 17 | -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/bin/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/BuiltInScheduler.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/BuiltInScheduler.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/Refactor/BuiltInScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/Refactor/BuiltInScheduler.dll -------------------------------------------------------------------------------- /SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_BuiltInScheduler/BuiltInScheduler/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimplSharpDay3_Json", "SimplSharpDay3_Json\SimplSharpDay3_Json.csproj", "{DEAAF8CE-AAE5-43C1-A412-9E08B0BCE00A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {DEAAF8CE-AAE5-43C1-A412-9E08B0BCE00A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {DEAAF8CE-AAE5-43C1-A412-9E08B0BCE00A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {DEAAF8CE-AAE5-43C1-A412-9E08B0BCE00A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {DEAAF8CE-AAE5-43C1-A412-9E08B0BCE00A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json.suo -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("SimplSharpDay3_Json")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("SimplSharpDay3_Json")] 6 | [assembly: AssemblyCopyright("Copyright © 2016")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SIMPLSharpLogs/(2016-08-03 09-38-01).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 09:38:01, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 09:38:01, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 09:47:01, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SIMPLSharpLogs/(2016-08-03 10-53-20).log: -------------------------------------------------------------------------------- 1 | 03/08/2016 10:53:20, Info: Initializing SIMPLSharp Services... 2 | 03/08/2016 10:53:20, Info: ProjectInfo successfully initialized. 3 | 03/08/2016 10:54:21, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SIMPLSharpLogs/(2016-09-30 10-17-51).log: -------------------------------------------------------------------------------- 1 | 9/30/2016 10:17:51 AM, Info: Initializing SIMPLSharp Services... 2 | 9/30/2016 10:17:57 AM, Info: ProjectInfo successfully initialized. 3 | 9/30/2016 11:51:16 AM, Info: Terminating SIMPLSharp Services 4 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SIMPLSharpLogs/(2016-09-30 11-55-31).log: -------------------------------------------------------------------------------- 1 | 9/30/2016 11:55:31 AM, Info: Initializing SIMPLSharp Services... 2 | 9/30/2016 11:55:31 AM, Info: ProjectInfo successfully initialized. 3 | 9/30/2016 11:59:08 AM, Info: Saving project information... 4 | 9/30/2016 11:59:08 AM, Info: Saving project information... 5 | 9/30/2016 11:59:08 AM, Info: Saving project information... 6 | 9/30/2016 11:59:08 AM, Info: Saving project information... 7 | 9/30/2016 11:59:08 AM, Info: Saving project information... 8 | 9/30/2016 11:59:08 AM, Info: Saving project information... 9 | 9/30/2016 11:59:40 AM, Info: Terminating SIMPLSharp Services 10 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SIMPLSharpLogs/(2016-09-30 11-59-46).log: -------------------------------------------------------------------------------- 1 | 9/30/2016 11:59:46 AM, Info: Initializing SIMPLSharp Services... 2 | 9/30/2016 11:59:46 AM, Info: ProjectInfo successfully initialized. 3 | 9/30/2016 12:08:43 PM, Info: Validating assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\October32016\Example Code\SimplSharpDay3_Json\SimplSharpDay3_Json\bin\Debug\SimplSharpDay3_Json.dll... 4 | 9/30/2016 12:08:44 PM, Info: Verifying assembly D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\October32016\Example Code\SimplSharpDay3_Json\SimplSharpDay3_Json\bin\Debug\SimplSharpDay3_Json.dll 5 | 9/30/2016 12:08:44 PM, Info: Creating Archive D:\CTI\2016 New Curriculum\SIMPL#-SIMPL#Pro\October32016\Example Code\SimplSharpDay3_Json\SimplSharpDay3_Json\bin\Debug\SimplSharpDay3_Json.cpz... 6 | 9/30/2016 12:08:45 PM, Info: Saving project information... 7 | 9/30/2016 1:35:54 PM, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SimplSharpDay3_Json.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/SimplSharpDay3_Json.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/SimplSharpDay3_Json.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/Newtonsoft.Json.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/Newtonsoft.Json.Compact.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | SimplSharpDay3_Json 4 | SimplSharpDay3_Json 5 | SimplSharpDay3_Json 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 9/30/2016 12:08:44 PM 14 | 1.0.0.20061 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.034 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.cpz -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpDay3_Json.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpNewtonsoft.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpNewtonsoft.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpReflectionInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpReflectionInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpSQLHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/SimplSharpSQLHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=SimplSharpDay3_Json.dll:e39c9888f510a9cb42ea32eda262aa1f 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 4 | ü 5 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 6 | DependencyPath=SimplSharpDay3_Json.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 7 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 8 | ü 9 | DependencySource=Newtonsoft.Json.Compact.dll:ea996aa2ec65aa1878e7c9d09e37a896 10 | DependencyPath=SimplSharpDay3_Json.cpz:Newtonsoft.Json.Compact.dll 11 | DependencyMainAssembly=Newtonsoft.Json.Compact.dll:ea996aa2ec65aa1878e7c9d09e37a896 12 | ü 13 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 14 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpCustomAttributesInterface.dll 15 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 16 | ü 17 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 18 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpHelperInterface.dll 19 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 20 | ü 21 | DependencySource=SimplSharpNewtonsoft.dll:9c09c5d30daedddf895c36acbface0d5 22 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpNewtonsoft.dll 23 | DependencyMainAssembly=SimplSharpNewtonsoft.dll:9c09c5d30daedddf895c36acbface0d5 24 | ü 25 | DependencySource=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 26 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpPro.exe 27 | DependencyMainAssembly=SimplSharpPro.exe:4cb4bb622e7055ecac191128b4c38454 28 | ü 29 | DependencySource=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2 30 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpReflectionInterface.dll 31 | DependencyMainAssembly=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2 32 | ü 33 | DependencySource=SimplSharpSQLHelperInterface.dll:f0c505ddecd8a783d4b75217501cbb72 34 | DependencyPath=SimplSharpDay3_Json.cpz:SimplSharpSQLHelperInterface.dll 35 | DependencyMainAssembly=SimplSharpSQLHelperInterface.dll:f0c505ddecd8a783d4b75217501cbb72 36 | -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/bin/Debug/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/SimplSharpDay3_Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/SimplSharpDay3_Json.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/SimplSharpDay3_Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Json/SimplSharpDay3_Json/obj/Debug/SimplSharpDay3_Json.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Reflection", "Reflection\Reflection.csproj", "{C72F5FFD-90AD-4A44-AD90-333B512C95F2}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReflectionLib1", "..\SimplSharpDay3_ReflectionLib1\ReflectionLib1\ReflectionLib1.csproj", "{F34ACF8B-3D0D-4EA5-A337-987284C957AA}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReflectionLib2", "..\SimplSharpDay3_ReflectionLib2\ReflectionLib2\ReflectionLib2.csproj", "{BFCCF15B-60BC-48D3-90A6-2C77D8D38931}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {C72F5FFD-90AD-4A44-AD90-333B512C95F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {C72F5FFD-90AD-4A44-AD90-333B512C95F2}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {C72F5FFD-90AD-4A44-AD90-333B512C95F2}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {C72F5FFD-90AD-4A44-AD90-333B512C95F2}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Release|Any CPU.Build.0 = Release|Any CPU 24 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 25 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Debug|Any CPU.Build.0 = Debug|Any CPU 26 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Release|Any CPU.ActiveCfg = Release|Any CPU 27 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Release|Any CPU.Build.0 = Release|Any CPU 28 | EndGlobalSection 29 | GlobalSection(SolutionProperties) = preSolution 30 | HideSolutionNode = FALSE 31 | EndGlobalSection 32 | EndGlobal 33 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection.suo -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("Reflection")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("Reflection")] 6 | [assembly: AssemblyCopyright("Copyright © 2015")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/Reflection.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 760b17d4-aa9d-48ae-b740-22c422cf6e481b4af60-9f95-475d-9913-dc4bdb60aaf8 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/Reflection.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/Reflection.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/SIMPLSharpLogs/(2016-08-01 13-55-41).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:55:41, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:55:41, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:56:37, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_Reflection\Reflection\bin\Reflection.dll... 4 | 01/08/2016 13:56:37, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_Reflection\Reflection\bin\Reflection.dll 5 | 01/08/2016 13:56:37, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_Reflection\Reflection\bin\Reflection.cpz... 6 | 01/08/2016 13:56:38, Info: Saving project information... 7 | 01/08/2016 13:58:30, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.DM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.DM.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.DeviceSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.DeviceSupport.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Crestron.SimplSharpPro.UI.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/ProgramInfo.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reflection 4 | Reflection 5 | Reflection 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 01/08/2016 13:56:37 14 | 1.0.0.23298 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.024 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Reflection.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Reflection.cpz -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Reflection.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/Reflection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/Reflection.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/SimplSharpPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/SimplSharpPro.exe -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/SimplSharpReflectionInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/SimplSharpReflectionInterface.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=Reflection.dll:1942c58c3f9f2b8333d052bdf509cfe3 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=ProjectInfo.dat:892143c922ad4e572ed5de35fb263430 4 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 5 | ü 6 | DependencySource=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 7 | DependencyPath=Reflection.cpz:Crestron.SimplSharpPro.DeviceSupport.dll 8 | DependencyMainAssembly=Crestron.SimplSharpPro.DeviceSupport.dll:caae4b4259aaf619059f0ae34473bfd2 9 | ü 10 | DependencySource=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 11 | DependencyPath=Reflection.cpz:Crestron.SimplSharpPro.DM.dll 12 | DependencyMainAssembly=Crestron.SimplSharpPro.DM.dll:bdf5acfa80cc3bb87f21deb891128b1d 13 | ü 14 | DependencySource=Crestron.SimplSharpPro.UI.dll:089312a0cb0b4537072d4eb234e71e0e 15 | DependencyPath=Reflection.cpz:Crestron.SimplSharpPro.UI.dll 16 | DependencyMainAssembly=Crestron.SimplSharpPro.UI.dll:089312a0cb0b4537072d4eb234e71e0e 17 | ü 18 | DependencySource=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 19 | DependencyPath=Reflection.cpz:SimplSharpCustomAttributesInterface.dll 20 | DependencyMainAssembly=SimplSharpCustomAttributesInterface.dll:9c4b4d4c519b655af90016edca2d66b9 21 | ü 22 | DependencySource=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 23 | DependencyPath=Reflection.cpz:SimplSharpHelperInterface.dll 24 | DependencyMainAssembly=SimplSharpHelperInterface.dll:aed72eb0e19559a3f56708be76445dcd 25 | ü 26 | DependencySource=SimplSharpPro.exe:9db48cd88113bccc458964d9e6af5725 27 | DependencyPath=Reflection.cpz:SimplSharpPro.exe 28 | DependencyMainAssembly=SimplSharpPro.exe:9db48cd88113bccc458964d9e6af5725 29 | ü 30 | DependencySource=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2 31 | DependencyPath=Reflection.cpz:SimplSharpReflectionInterface.dll 32 | DependencyMainAssembly=SimplSharpReflectionInterface.dll:e3ff8edbba84ccd7155b9984e67488b2 33 | -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/bin/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/bin/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/obj/Debug/Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/obj/Debug/Reflection.dll -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/obj/Debug/Reflection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/obj/Debug/Reflection.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_Reflection/Reflection/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_Reflection/Reflection/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReflectionLib1", "ReflectionLib1\ReflectionLib1.csproj", "{F34ACF8B-3D0D-4EA5-A337-987284C957AA}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {F34ACF8B-3D0D-4EA5-A337-987284C957AA}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("ReflectionLib1")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("ReflectionLib1")] 6 | [assembly: AssemblyCopyright("Copyright © 2015")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/ReflectionLib1.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/ReflectionLib1.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/ReflectionLib1.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/RelayClicks.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Crestron.SimplSharp; // For Basic SIMPL# Classes 3 | using Crestron.SimplSharpPro; // For Basic SIMPL#Pro classes 4 | using Crestron.SimplSharpPro.CrestronThread; 5 | 6 | namespace ReflectionLib1 7 | { 8 | public class RelayClicks 9 | { 10 | private Thread myThread; 11 | public CrestronControlSystem cs; 12 | 13 | public RelayClicks() 14 | { 15 | } 16 | 17 | public void Initialize() 18 | { 19 | if (cs.SupportsRelay) 20 | { 21 | if (!cs.RelayPorts[1].Registered) 22 | { 23 | if (cs.RelayPorts[1].Register() != eDeviceRegistrationUnRegistrationResponse.Success) 24 | { 25 | ErrorLog.Error(String.Format("Error Registering Relay Port: {0}", cs.RelayPorts[1].DeviceRegistrationFailureReason)); 26 | } 27 | } 28 | } 29 | 30 | } 31 | 32 | public void StartClicking(int interval) 33 | { 34 | CrestronConsole.PrintLine("StartClicking"); 35 | myThread = new Thread(Clicking, interval, Thread.eThreadStartOptions.Running); 36 | } 37 | 38 | public void StopClicking() 39 | { 40 | CrestronConsole.PrintLine("StopClicking"); 41 | myThread.Abort(); 42 | } 43 | 44 | private object Clicking(object obj) 45 | { 46 | int timeout = (int)obj; 47 | while (true && cs.RelayPorts[1].Registered) 48 | { 49 | cs.RelayPorts[1].State = !cs.RelayPorts[1].State; 50 | Thread.Sleep(timeout); 51 | } 52 | return null; 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/SIMPLSharpLogs/(2016-08-01 13-56-20).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:56:20, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:56:20, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:56:36, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib1\ReflectionLib1\bin\ReflectionLib1.dll... 4 | 01/08/2016 13:56:36, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib1\ReflectionLib1\bin\ReflectionLib1.dll 5 | 01/08/2016 13:56:36, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib1\ReflectionLib1\bin\ReflectionLib1.cplz... 6 | 01/08/2016 13:56:36, Info: Saving project information... 7 | 01/08/2016 13:58:30, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | ReflectionLib1 4 | ReflectionLib1 5 | ReflectionLib1 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 01/08/2016 13:56:36 14 | 1.0.0.23297 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.024 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.cplz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.cplz -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.dll -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/ReflectionLib1.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=ReflectionLib1.dll:b42ea1c81e0aef83842e30ef9e36f34f 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=ProjectInfo.dat:533e9af3b7dc901c397950c3519402a0 4 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/bin/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ReflectionLib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ReflectionLib1.dll -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ReflectionLib1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ReflectionLib1.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib1/ReflectionLib1/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReflectionLib2", "ReflectionLib2\ReflectionLib2.csproj", "{BFCCF15B-60BC-48D3-90A6-2C77D8D38931}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {BFCCF15B-60BC-48D3-90A6-2C77D8D38931}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2.suo -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/PrintToConsole.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Crestron.SimplSharp; // For Basic SIMPL# Classes 3 | using Crestron.SimplSharpPro; // For Basic SIMPL#Pro classes 4 | 5 | namespace ReflectionLib2 6 | { 7 | public class PrintToConsole 8 | { 9 | public PrintToConsole() 10 | { 11 | // nothing to do here 12 | } 13 | 14 | public void PrintSomething(String str) 15 | { 16 | CrestronConsole.Print(str); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("ReflectionLib2")] 4 | [assembly: AssemblyCompany("")] 5 | [assembly: AssemblyProduct("ReflectionLib2")] 6 | [assembly: AssemblyCopyright("Copyright © 2015")] 7 | [assembly: AssemblyVersion("1.0.0.*")] 8 | 9 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/Properties/ControlSystem.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/Properties/ControlSystem.cfg -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/ReflectionLib2.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | E282E6BE-C7C3-4ece-916A-88FB1CF8AF3C 4 | 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/ReflectionLib2.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/ReflectionLib2.projectinfo -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/SIMPLSharpLogs/(2016-08-01 13-56-29).log: -------------------------------------------------------------------------------- 1 | 01/08/2016 13:56:29, Info: Initializing SIMPLSharp Services... 2 | 01/08/2016 13:56:29, Info: ProjectInfo successfully initialized. 3 | 01/08/2016 13:56:38, Info: Validating assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib2\ReflectionLib2\bin\ReflectionLib2.dll... 4 | 01/08/2016 13:56:38, Info: Verifying assembly F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib2\ReflectionLib2\bin\ReflectionLib2.dll 5 | 01/08/2016 13:56:38, Info: Creating Archive F:\Sync\Training Classes\SimplSharpCertification\Example Code\SimplSharpDay3_ReflectionLib2\ReflectionLib2\bin\ReflectionLib2.cplz... 6 | 01/08/2016 13:56:38, Info: Saving project information... 7 | 01/08/2016 13:58:30, Info: Terminating SIMPLSharp Services 8 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ProjectInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ProjectInfo.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | ReflectionLib2 4 | ReflectionLib2 5 | ReflectionLib2 6 | 1.009.0029 7 | SIMPL# Plugin 8 | 5 9 | 5 10 | 11 | 12 | 13 | 01/08/2016 13:56:38 14 | 1.0.0.23299 15 | 16 | 17 | Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 18 | 2.04.024 19 | 20 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.cplz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.cplz -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.dll -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/ReflectionLib2.pdb -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/SimplSharpData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/SimplSharpData.dat -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/manifest.info: -------------------------------------------------------------------------------- 1 | MainAssembly=ReflectionLib2.dll:7b7c756f57892930698a2b8a1ad0d6f7 2 | MainAssemblyMinFirmwareVersion=1.009.0029 3 | MainAssemblyResource=ProjectInfo.dat:8f2de268b97fca9402e5f34937c78f3a 4 | MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e 5 | -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/manifest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/bin/manifest.ser -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/obj/Debug/ReflectionLib2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/obj/Debug/ReflectionLib2.dll -------------------------------------------------------------------------------- /SimplSharpDay3_ReflectionLib2/ReflectionLib2/obj/Debug/ReflectionLib2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plinck/CrestronSSClass/a0656daeb4eaa5136e8635740229083ece87c646/SimplSharpDay3_ReflectionLib2/ReflectionLib2/obj/Debug/ReflectionLib2.pdb --------------------------------------------------------------------------------