Missing references
devttys1 opened this issue · comments
In the file Lights\CBusLightingDevice.cs
there are references to some things which seem to be missing;
using Tools;
using Interface.Common;
using AllegroTech.AVControl.Command.Device;
Also the files build action was set to "None"
Trying to compile the file results in the following errors:
Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'MetaData' could not be found (are you missing a using directive or an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 16 Active
Error CS0246 The type or namespace name 'Tools' could not be found (are you missing a using directive or an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 11 Active
Error CS0246 The type or namespace name 'Tools' could not be found (are you missing a using directive or an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 11 Active
Error CS0234 The type or namespace name 'Common' does not exist in the namespace 'AllegroTech.CBus4Net.Interface' (are you missing an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 12 Active
Error CS0234 The type or namespace name 'Common' does not exist in the namespace 'AllegroTech.CBus4Net.Interface' (are you missing an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 12 Active
Error CS0234 The type or namespace name 'AVControl' does not exist in the namespace 'AllegroTech' (are you missing an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 13 Active
Error CS0234 The type or namespace name 'AVControl' does not exist in the namespace 'AllegroTech' (are you missing an assembly reference?) AllegroTech.CBus4Net C:\CBus4Net\AllegroTech.CBus4Net\Lights\CBusLightingDevice.cs 13 Active
Is it possible to add these references to the repository?
Thank you