diff --git a/src/LocalTelemetry.App/LocalTelemetry.App.csproj b/src/LocalTelemetry.App/LocalTelemetry.App.csproj index 9bf65a3..954eac2 100644 --- a/src/LocalTelemetry.App/LocalTelemetry.App.csproj +++ b/src/LocalTelemetry.App/LocalTelemetry.App.csproj @@ -21,7 +21,7 @@ - + @@ -39,11 +39,11 @@ - + - - - + + + - - - + + + diff --git a/tests/LocalTelemetry.App.Tests/LocalTelemetry.App.Tests.csproj b/tests/LocalTelemetry.App.Tests/LocalTelemetry.App.Tests.csproj index f623760..df96bd7 100644 --- a/tests/LocalTelemetry.App.Tests/LocalTelemetry.App.Tests.csproj +++ b/tests/LocalTelemetry.App.Tests/LocalTelemetry.App.Tests.csproj @@ -14,18 +14,18 @@ - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + diff --git a/tests/LocalTelemetry.Core.Tests/Hardware/GpuAndDiskMonitorsTests.cs b/tests/LocalTelemetry.Core.Tests/Hardware/GpuAndDiskMonitorsTests.cs index 5728181..8d1a5b5 100644 --- a/tests/LocalTelemetry.Core.Tests/Hardware/GpuAndDiskMonitorsTests.cs +++ b/tests/LocalTelemetry.Core.Tests/Hardware/GpuAndDiskMonitorsTests.cs @@ -15,7 +15,7 @@ public void DiskQuery_QueryAllDrives_ReturnsList() var primary = DiskQuery.QueryPhysicalDrive0(); if (primary is not null) { - primary.DiskIndex.Should().BeGreaterOrEqualTo(0); + primary.DiskIndex.Should().BeGreaterThanOrEqualTo(0); primary.BusType.Should().NotBeNull(); } diff --git a/tests/LocalTelemetry.Core.Tests/Hardware/PawnIoTests.cs b/tests/LocalTelemetry.Core.Tests/Hardware/PawnIoTests.cs index 0ade289..225d213 100644 --- a/tests/LocalTelemetry.Core.Tests/Hardware/PawnIoTests.cs +++ b/tests/LocalTelemetry.Core.Tests/Hardware/PawnIoTests.cs @@ -21,11 +21,11 @@ public void IntelMsrReader_ReadTemperature_CalculatesTemperatureFromMsr() var mockDevice = Substitute.For(); // MSR_IA32_TEMPERATURE_TARGET (0x1A2) returns tjMax = 100 in bits 16-23 -> (100 << 16) = 0x640000 - mockDevice.Execute("ioctl_read_msr", Arg.Is(a => a[0] == 0x1A2), 1) + mockDevice.Execute("ioctl_read_msr", Arg.Is(a => a![0] == 0x1A2), 1) .Returns([0x640000UL]); // MSR_IA32_PACKAGE_THERM_STATUS (0x1B1) returns digitalReadout = 40 in bits 16-23 -> (40 << 16) = 0x280000 - mockDevice.Execute("ioctl_read_msr", Arg.Is(a => a[0] == 0x1B1), 1) + mockDevice.Execute("ioctl_read_msr", Arg.Is(a => a![0] == 0x1B1), 1) .Returns([0x280000UL]); using var reader = new IntelMsrReader(mockDevice); diff --git a/tests/LocalTelemetry.Core.Tests/LocalTelemetry.Core.Tests.csproj b/tests/LocalTelemetry.Core.Tests/LocalTelemetry.Core.Tests.csproj index be0eb73..56ad040 100644 --- a/tests/LocalTelemetry.Core.Tests/LocalTelemetry.Core.Tests.csproj +++ b/tests/LocalTelemetry.Core.Tests/LocalTelemetry.Core.Tests.csproj @@ -16,19 +16,19 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + diff --git a/tests/LocalTelemetry.Notifier.Tests/LocalTelemetry.Notifier.Tests.csproj b/tests/LocalTelemetry.Notifier.Tests/LocalTelemetry.Notifier.Tests.csproj index cc8db84..4b4b09d 100644 --- a/tests/LocalTelemetry.Notifier.Tests/LocalTelemetry.Notifier.Tests.csproj +++ b/tests/LocalTelemetry.Notifier.Tests/LocalTelemetry.Notifier.Tests.csproj @@ -14,18 +14,18 @@ - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + +