diff --git a/RGB.NET.Core/RGB.NET.Core.csproj b/RGB.NET.Core/RGB.NET.Core.csproj
index ee87698..8499b1e 100644
--- a/RGB.NET.Core/RGB.NET.Core.csproj
+++ b/RGB.NET.Core/RGB.NET.Core.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Asus/Helper/WMIHelper.cs b/RGB.NET.Devices.Asus/Helper/WMIHelper.cs
index 5aa49c7..482f3a3 100644
--- a/RGB.NET.Devices.Asus/Helper/WMIHelper.cs
+++ b/RGB.NET.Devices.Asus/Helper/WMIHelper.cs
@@ -43,7 +43,7 @@ internal static class WMIHelper
if ((_systemModelInfo == null) && (_systemModelSearcher != null))
foreach (ManagementBaseObject managementBaseObject in _systemModelSearcher.Get())
{
- _systemModelInfo = managementBaseObject["Model"]?.ToString();
+ _systemModelInfo = managementBaseObject["Model"].ToString();
break;
}
@@ -57,7 +57,7 @@ internal static class WMIHelper
if (!_mainboardInfo.HasValue && (_mainboardSearcher != null))
foreach (ManagementBaseObject managementBaseObject in _mainboardSearcher.Get())
{
- _mainboardInfo = (managementBaseObject["Manufacturer"]?.ToString() ?? string.Empty, managementBaseObject["Product"]?.ToString() ?? string.Empty);
+ _mainboardInfo = (managementBaseObject["Manufacturer"].ToString() ?? string.Empty, managementBaseObject["Product"].ToString() ?? string.Empty);
break;
}
@@ -71,7 +71,7 @@ internal static class WMIHelper
if ((_graphicsCardInfo == null) && (_graphicsCardSearcher != null))
foreach (ManagementBaseObject managementBaseObject in _graphicsCardSearcher.Get())
{
- _graphicsCardInfo = managementBaseObject["Name"]?.ToString();
+ _graphicsCardInfo = managementBaseObject["Name"].ToString();
break;
}
diff --git a/RGB.NET.Devices.CoolerMaster/RGB.NET.Devices.CoolerMaster.csproj b/RGB.NET.Devices.CoolerMaster/RGB.NET.Devices.CoolerMaster.csproj
index fad9d75..2adfaa5 100644
--- a/RGB.NET.Devices.CoolerMaster/RGB.NET.Devices.CoolerMaster.csproj
+++ b/RGB.NET.Devices.CoolerMaster/RGB.NET.Devices.CoolerMaster.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Corsair/Enum/CorsairLedGroup.cs b/RGB.NET.Devices.Corsair/Enum/CorsairLedGroup.cs
index 7281323..3ec299d 100644
--- a/RGB.NET.Devices.Corsair/Enum/CorsairLedGroup.cs
+++ b/RGB.NET.Devices.Corsair/Enum/CorsairLedGroup.cs
@@ -1,4 +1,6 @@
-namespace RGB.NET.Devices.Corsair;
+// ReSharper disable InconsistentNaming
+
+namespace RGB.NET.Devices.Corsair;
///
/// iCUE-SDK: contains a list of led groups. Led group is used as a part of led identifier
diff --git a/RGB.NET.Devices.Corsair/Generic/LedMappings.cs b/RGB.NET.Devices.Corsair/Generic/LedMappings.cs
index 8166070..ffbfa0f 100644
--- a/RGB.NET.Devices.Corsair/Generic/LedMappings.cs
+++ b/RGB.NET.Devices.Corsair/Generic/LedMappings.cs
@@ -11,6 +11,7 @@ internal static class LedMappings
{
#region Constants
+ // ReSharper disable once InconsistentNaming
private static LedMapping KEYBOARD_MAPPING => new()
{
{ LedId.Invalid, new CorsairLedId(CorsairLedGroup.Keyboard, CorsairLedIdKeyboard.Invalid) },
diff --git a/RGB.NET.Devices.Corsair/RGB.NET.Devices.Corsair.csproj b/RGB.NET.Devices.Corsair/RGB.NET.Devices.Corsair.csproj
index 13b8ead..ccb143e 100644
--- a/RGB.NET.Devices.Corsair/RGB.NET.Devices.Corsair.csproj
+++ b/RGB.NET.Devices.Corsair/RGB.NET.Devices.Corsair.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.DMX/RGB.NET.Devices.DMX.csproj b/RGB.NET.Devices.DMX/RGB.NET.Devices.DMX.csproj
index 6ddf0ea..e6e876e 100644
--- a/RGB.NET.Devices.DMX/RGB.NET.Devices.DMX.csproj
+++ b/RGB.NET.Devices.DMX/RGB.NET.Devices.DMX.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Debug/RGB.NET.Devices.Debug.csproj b/RGB.NET.Devices.Debug/RGB.NET.Devices.Debug.csproj
index b2d5367..980153c 100644
--- a/RGB.NET.Devices.Debug/RGB.NET.Devices.Debug.csproj
+++ b/RGB.NET.Devices.Debug/RGB.NET.Devices.Debug.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Logitech/RGB.NET.Devices.Logitech.csproj b/RGB.NET.Devices.Logitech/RGB.NET.Devices.Logitech.csproj
index 7b57ee4..fd412e7 100644
--- a/RGB.NET.Devices.Logitech/RGB.NET.Devices.Logitech.csproj
+++ b/RGB.NET.Devices.Logitech/RGB.NET.Devices.Logitech.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Msi/RGB.NET.Devices.Msi.csproj b/RGB.NET.Devices.Msi/RGB.NET.Devices.Msi.csproj
index 0d9a647..7d604a6 100644
--- a/RGB.NET.Devices.Msi/RGB.NET.Devices.Msi.csproj
+++ b/RGB.NET.Devices.Msi/RGB.NET.Devices.Msi.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Novation/RGB.NET.Devices.Novation.csproj b/RGB.NET.Devices.Novation/RGB.NET.Devices.Novation.csproj
index 19a1464..cda9c5e 100644
--- a/RGB.NET.Devices.Novation/RGB.NET.Devices.Novation.csproj
+++ b/RGB.NET.Devices.Novation/RGB.NET.Devices.Novation.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.OpenRGB/OpenRGBDeviceProvider.cs b/RGB.NET.Devices.OpenRGB/OpenRGBDeviceProvider.cs
index ccf41a3..c9d3cbc 100644
--- a/RGB.NET.Devices.OpenRGB/OpenRGBDeviceProvider.cs
+++ b/RGB.NET.Devices.OpenRGB/OpenRGBDeviceProvider.cs
@@ -92,7 +92,7 @@ public class OpenRGBDeviceProvider : AbstractRGBDeviceProvider
for (int i = 0; i < deviceCount; i++)
{
- Device? device = openRgb.GetControllerData(i);
+ Device device = openRgb.GetControllerData(i);
int directModeIndex = Array.FindIndex(device.Modes, d => d.Name == "Direct");
if (directModeIndex != -1)
@@ -112,7 +112,7 @@ public class OpenRGBDeviceProvider : AbstractRGBDeviceProvider
if (device.Zones.All(z => z.LedCount == 0))
continue;
- OpenRGBUpdateQueue? updateQueue = new(GetUpdateTrigger(), i, openRgb, device);
+ OpenRGBUpdateQueue updateQueue = new(GetUpdateTrigger(), i, openRgb, device);
bool anyZoneHasSegments = device.Zones.Any(z => z.Segments.Length > 0);
bool splitDeviceByZones = anyZoneHasSegments || PerZoneDeviceFlag.HasFlag(Helper.GetRgbNetDeviceType(device.Type));
diff --git a/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj b/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj
index 6474494..94ce604 100644
--- a/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj
+++ b/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj.DotSettings b/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj.DotSettings
index f79e29d..7e8e95f 100644
--- a/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj.DotSettings
+++ b/RGB.NET.Devices.OpenRGB/RGB.NET.Devices.OpenRGB.csproj.DotSettings
@@ -1,4 +1,5 @@
True
True
- True
\ No newline at end of file
+ True
+ True
\ No newline at end of file
diff --git a/RGB.NET.Devices.PicoPi/RGB.NET.Devices.PicoPi.csproj b/RGB.NET.Devices.PicoPi/RGB.NET.Devices.PicoPi.csproj
index d75e479..6cf8a2c 100644
--- a/RGB.NET.Devices.PicoPi/RGB.NET.Devices.PicoPi.csproj
+++ b/RGB.NET.Devices.PicoPi/RGB.NET.Devices.PicoPi.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Razer/RGB.NET.Devices.Razer.csproj b/RGB.NET.Devices.Razer/RGB.NET.Devices.Razer.csproj
index 886ad44..27f7261 100644
--- a/RGB.NET.Devices.Razer/RGB.NET.Devices.Razer.csproj
+++ b/RGB.NET.Devices.Razer/RGB.NET.Devices.Razer.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.SteelSeries/RGB.NET.Devices.SteelSeries.csproj b/RGB.NET.Devices.SteelSeries/RGB.NET.Devices.SteelSeries.csproj
index 487711b..f75e2d8 100644
--- a/RGB.NET.Devices.SteelSeries/RGB.NET.Devices.SteelSeries.csproj
+++ b/RGB.NET.Devices.SteelSeries/RGB.NET.Devices.SteelSeries.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.WS281X/RGB.NET.Devices.WS281X.csproj b/RGB.NET.Devices.WS281X/RGB.NET.Devices.WS281X.csproj
index 82435e5..5487a8e 100644
--- a/RGB.NET.Devices.WS281X/RGB.NET.Devices.WS281X.csproj
+++ b/RGB.NET.Devices.WS281X/RGB.NET.Devices.WS281X.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Wooting/RGB.NET.Devices.Wooting.csproj b/RGB.NET.Devices.Wooting/RGB.NET.Devices.Wooting.csproj
index 532c590..8a34dcd 100644
--- a/RGB.NET.Devices.Wooting/RGB.NET.Devices.Wooting.csproj
+++ b/RGB.NET.Devices.Wooting/RGB.NET.Devices.Wooting.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Devices.Wooting/WootingDeviceProvider.cs b/RGB.NET.Devices.Wooting/WootingDeviceProvider.cs
index c920ebb..aebe9c0 100644
--- a/RGB.NET.Devices.Wooting/WootingDeviceProvider.cs
+++ b/RGB.NET.Devices.Wooting/WootingDeviceProvider.cs
@@ -44,6 +44,7 @@ public class WootingDeviceProvider : AbstractRGBDeviceProvider
/// Gets a modifiable list of paths used to find the native SDK-dlls for x64 MacOS applications.
/// The first match will be used.
///
+ // ReSharper disable once InconsistentNaming
public static List PossibleNativePathsMacOS { get; } = new() { "x64/libwooting-rgb-sdk.dylib" };
#endregion
diff --git a/RGB.NET.HID/RGB.NET.HID.csproj b/RGB.NET.HID/RGB.NET.HID.csproj
index 2021184..7bf502b 100644
--- a/RGB.NET.HID/RGB.NET.HID.csproj
+++ b/RGB.NET.HID/RGB.NET.HID.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Layout/RGB.NET.Layout.csproj b/RGB.NET.Layout/RGB.NET.Layout.csproj
index 582fb71..3c90185 100644
--- a/RGB.NET.Layout/RGB.NET.Layout.csproj
+++ b/RGB.NET.Layout/RGB.NET.Layout.csproj
@@ -40,7 +40,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -48,7 +48,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE
diff --git a/RGB.NET.Presets/RGB.NET.Presets.csproj b/RGB.NET.Presets/RGB.NET.Presets.csproj
index f4da69c..048087a 100644
--- a/RGB.NET.Presets/RGB.NET.Presets.csproj
+++ b/RGB.NET.Presets/RGB.NET.Presets.csproj
@@ -41,7 +41,7 @@
- $(DefineConstants);TRACE;DEBUG
+ TRACE;DEBUG
true
false
@@ -49,7 +49,7 @@
true
$(NoWarn);CS1591;CS1572;CS1573
- $(DefineConstants);RELEASE
+ RELEASE