Updates DisplayControllerBridge to support BasicIrDisplay types, adds Samsung IR driver file, updates SetupFileSystem in ControlSystem.cs to build plugin folder

This commit is contained in:
Neil Dorin
2019-06-24 15:16:20 -06:00
parent c15adea02e
commit af12a81c00
6 changed files with 48 additions and 30 deletions

View File

@@ -248,6 +248,10 @@ namespace PepperDash.Essentials
if (!Directory.Exists(sgdDir))
Directory.Create(sgdDir);
var pluginDir = Global.FilePathPrefix + "plugins";
if (!Directory.Exists(pluginDir))
Directory.Create(pluginDir);
return configExists;
}