From 0351dd7259643df0edaa0e6d8b98bfe86d86a383 Mon Sep 17 00:00:00 2001 From: Alejandro Ruiz <44587611+arctouch-alejandrovarela@users.noreply.github.com> Date: Mon, 17 Jun 2024 10:27:23 -0600 Subject: [PATCH] Fix IsOfflineException to Handle new MAUI type for integers on iOS (#43) Fix IsOfflineException to Handle new MAUI type for integers on iOS --- Float.Core.Tests/Float.Core.Tests.csproj | 4 ++-- Float.Core.Tests/IEnumerator.tests.cs | 4 ++-- Float.Core/Float.Core.csproj | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Float.Core.Tests/Float.Core.Tests.csproj b/Float.Core.Tests/Float.Core.Tests.csproj index 9d16ce2..b044b15 100644 --- a/Float.Core.Tests/Float.Core.Tests.csproj +++ b/Float.Core.Tests/Float.Core.Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp3.1;net6.0;net7.0 + netcoreapp3.1;net7.0;net8.0; false 9.0 true @@ -11,7 +11,7 @@ ../stylecop.ruleset - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/Float.Core.Tests/IEnumerator.tests.cs b/Float.Core.Tests/IEnumerator.tests.cs index 1342863..d3c3390 100644 --- a/Float.Core.Tests/IEnumerator.tests.cs +++ b/Float.Core.Tests/IEnumerator.tests.cs @@ -90,7 +90,7 @@ public void TestToDictionary() new KeyValuePair("third", 333) }; - var dict2 = dict1.ToDictionary(); + var dict2 = IEnumerableExtensions.ToDictionary(dict1); Assert.Equal(111, dict2["first"]); Assert.Equal(222, dict2["second"]); @@ -121,7 +121,7 @@ class TestClass1 { } - class TestClass2: TestClass1 + class TestClass2 : TestClass1 { } diff --git a/Float.Core/Float.Core.csproj b/Float.Core/Float.Core.csproj index ec13c4a..0c23b86 100644 --- a/Float.Core/Float.Core.csproj +++ b/Float.Core/Float.Core.csproj @@ -1,6 +1,6 @@ - netstandard2;net6.0;net7.0 + netstandard2;net7.0;net8.0; Float.Core Float Common utility code used by Float projects.