diff --git a/src/PepperDash.Essentials.Core/Devices/PC/InRoomPc.cs b/src/PepperDash.Essentials.Core/Devices/PC/InRoomPc.cs index b02024da..12b3f0c8 100644 --- a/src/PepperDash.Essentials.Core/Devices/PC/InRoomPc.cs +++ b/src/PepperDash.Essentials.Core/Devices/PC/InRoomPc.cs @@ -10,7 +10,7 @@ using PepperDash.Core; namespace PepperDash.Essentials.Core.Devices { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class InRoomPc : EssentialsDevice, IHasFeedback, IRoutingOutputs, IAttachVideoStatus, IUiDisplayInfo, IUsageTracking { public uint DisplayUiType { get { return DisplayUiConstants.TypeLaptop; } } @@ -63,7 +63,7 @@ namespace PepperDash.Essentials.Core.Devices #endregion } - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class InRoomPcFactory : EssentialsDeviceFactory { public InRoomPcFactory() diff --git a/src/PepperDash.Essentials.Core/Devices/PC/Laptop.cs b/src/PepperDash.Essentials.Core/Devices/PC/Laptop.cs index d392edac..28069c76 100644 --- a/src/PepperDash.Essentials.Core/Devices/PC/Laptop.cs +++ b/src/PepperDash.Essentials.Core/Devices/PC/Laptop.cs @@ -11,7 +11,7 @@ using PepperDash.Core; namespace PepperDash.Essentials.Core.Devices { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class Laptop : EssentialsDevice, IHasFeedback, IRoutingOutputs, IAttachVideoStatus, IUiDisplayInfo, IUsageTracking { public uint DisplayUiType { get { return DisplayUiConstants.TypeLaptop; } } @@ -64,7 +64,7 @@ namespace PepperDash.Essentials.Core.Devices #endregion } - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class LaptopFactory : EssentialsDeviceFactory { public LaptopFactory() diff --git a/src/PepperDash.Essentials.Core/Display/BasicIrDisplay.cs b/src/PepperDash.Essentials.Core/Display/BasicIrDisplay.cs index 8d0afdcc..121a1874 100644 --- a/src/PepperDash.Essentials.Core/Display/BasicIrDisplay.cs +++ b/src/PepperDash.Essentials.Core/Display/BasicIrDisplay.cs @@ -14,7 +14,7 @@ using PepperDash.Essentials.Core.Routing; namespace PepperDash.Essentials.Core { - [Obsolete("Please use PepperDash.Essentials.Device.Common")] + [Obsolete("Please use PepperDash.Essentials.Device.Common, this will be removed in 2.1")] public class BasicIrDisplay : DisplayBase, IBasicVolumeControls, IBridgeAdvanced { public IrOutputPortController IrPort { get; private set; } @@ -203,7 +203,7 @@ namespace PepperDash.Essentials.Core } } - [Obsolete("Please use PepperDash.Essentials.Device.Common")] + [Obsolete("Please use PepperDash.Essentials.Device.Common, this will be removed in 2.1")] public class BasicIrDisplayFactory : EssentialsDeviceFactory { public BasicIrDisplayFactory() diff --git a/src/PepperDash.Essentials.Core/Display/DisplayBase.cs b/src/PepperDash.Essentials.Core/Display/DisplayBase.cs index 0bb172ca..aa94f4f4 100644 --- a/src/PepperDash.Essentials.Core/Display/DisplayBase.cs +++ b/src/PepperDash.Essentials.Core/Display/DisplayBase.cs @@ -12,7 +12,7 @@ using PepperDash.Essentials.Core.Bridges; namespace PepperDash.Essentials.Core { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public abstract class DisplayBase : EssentialsDevice, IHasFeedback, IRoutingSinkWithSwitching, IHasPowerControl, IWarmingCooling, IUsageTracking { public event SourceInfoChangeHandler CurrentSourceChange; @@ -250,7 +250,7 @@ namespace PepperDash.Essentials.Core } - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public abstract class TwoWayDisplayBase : DisplayBase, IRoutingFeedback, IHasPowerControlWithFeedback { public StringFeedback CurrentInputFeedback { get; private set; } diff --git a/src/PepperDash.Essentials.Core/Display/MockDisplay.cs b/src/PepperDash.Essentials.Core/Display/MockDisplay.cs index 4b60882b..db568519 100644 --- a/src/PepperDash.Essentials.Core/Display/MockDisplay.cs +++ b/src/PepperDash.Essentials.Core/Display/MockDisplay.cs @@ -16,7 +16,7 @@ using PepperDash.Essentials.Core.Config; namespace PepperDash.Essentials.Core { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class MockDisplay : TwoWayDisplayBase, IBasicVolumeWithFeedback, IBridgeAdvanced { @@ -219,7 +219,7 @@ namespace PepperDash.Essentials.Core } - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public class MockDisplayFactory : EssentialsDeviceFactory { public MockDisplayFactory() diff --git a/src/PepperDash.Essentials.Core/Lighting/LightingBase.cs b/src/PepperDash.Essentials.Core/Lighting/LightingBase.cs index 996b01ad..38a74d37 100644 --- a/src/PepperDash.Essentials.Core/Lighting/LightingBase.cs +++ b/src/PepperDash.Essentials.Core/Lighting/LightingBase.cs @@ -13,7 +13,7 @@ using PepperDash.Essentials.Core.Bridges; namespace PepperDash.Essentials.Core.Lighting { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public abstract class LightingBase : EssentialsBridgeableDevice, ILightingScenes { #region ILightingScenes Members diff --git a/src/PepperDash.Essentials.Core/Shades/ShadeBase.cs b/src/PepperDash.Essentials.Core/Shades/ShadeBase.cs index d35c46ca..c44abac6 100644 --- a/src/PepperDash.Essentials.Core/Shades/ShadeBase.cs +++ b/src/PepperDash.Essentials.Core/Shades/ShadeBase.cs @@ -10,7 +10,7 @@ using PepperDash.Essentials.Core.CrestronIO; namespace PepperDash.Essentials.Core.Shades { - [Obsolete("Please use PepperDash.Essentials.Devices.Common")] + [Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")] public abstract class ShadeBase : EssentialsDevice, IShadesOpenCloseStop { public ShadeBase(string key, string name)