diff --git a/RGB.NET.Core/MVVM/IBindable.cs b/RGB.NET.Core/MVVM/IBindable.cs
index 34a861d..24d1fa5 100644
--- a/RGB.NET.Core/MVVM/IBindable.cs
+++ b/RGB.NET.Core/MVVM/IBindable.cs
@@ -6,5 +6,4 @@ namespace RGB.NET.Core;
/// Represents a basic bindable class which notifies when a property value changes.
///
public interface IBindable : INotifyPropertyChanged
-{
-}
\ No newline at end of file
+{ }
\ No newline at end of file
diff --git a/RGB.NET.Devices.Asus/RGB.NET.Devices.Asus.csproj b/RGB.NET.Devices.Asus/RGB.NET.Devices.Asus.csproj
index f7a9c4b..dc67689 100644
--- a/RGB.NET.Devices.Asus/RGB.NET.Devices.Asus.csproj
+++ b/RGB.NET.Devices.Asus/RGB.NET.Devices.Asus.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/Native/_CUESDK.cs b/RGB.NET.Devices.Corsair/Native/_CUESDK.cs
index d3593ee..00d9f92 100644
--- a/RGB.NET.Devices.Corsair/Native/_CUESDK.cs
+++ b/RGB.NET.Devices.Corsair/Native/_CUESDK.cs
@@ -91,11 +91,7 @@ internal static unsafe class _CUESDK
if (dllPath == null) throw new RGBDeviceException($"Can't find the CUE-SDK at one of the expected locations:\r\n '{string.Join("\r\n", possiblePathList.Select(Path.GetFullPath))}'");
if (!NativeLibrary.TryLoad(dllPath, out _handle))
-#if NET6_0_OR_GREATER
throw new RGBDeviceException($"Corsair LoadLibrary failed with error code {Marshal.GetLastPInvokeError()}");
-#else
- throw new RGBDeviceException($"Corsair LoadLibrary failed with error code {Marshal.GetLastWin32Error()}");
-#endif
_corsairConnectPtr = (delegate* unmanaged[Cdecl])LoadFunction("CorsairConnect");
_corsairGetSessionDetails = (delegate* unmanaged[Cdecl])LoadFunction("CorsairGetSessionDetails");