Skip to content

Commit

Permalink
Fix IsOfflineException to Handle new MAUI type for integers on iOS (#43)
Browse files Browse the repository at this point in the history
Fix IsOfflineException to Handle new MAUI type for integers on iOS
  • Loading branch information
arctouch-alejandrovarela authored Jun 17, 2024
1 parent c7c3d76 commit 0351dd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Float.Core.Tests/Float.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net7.0;net8.0;</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>9.0</LangVersion>
<UseMaui>true</UseMaui>
Expand All @@ -11,7 +11,7 @@
<PropertyGroup>
<CodeAnalysisRuleSet>../stylecop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net7.0'">
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'net7.0'">
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions Float.Core.Tests/IEnumerator.tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void TestToDictionary()
new KeyValuePair<string, int>("third", 333)
};

var dict2 = dict1.ToDictionary();
var dict2 = IEnumerableExtensions.ToDictionary(dict1);

Assert.Equal(111, dict2["first"]);
Assert.Equal(222, dict2["second"]);
Expand Down Expand Up @@ -121,7 +121,7 @@ class TestClass1
{
}

class TestClass2: TestClass1
class TestClass2 : TestClass1
{
}

Expand Down
2 changes: 1 addition & 1 deletion Float.Core/Float.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2;net7.0;net8.0;</TargetFrameworks>
<AssemblyName>Float.Core</AssemblyName>
<AssemblyAuthor>Float</AssemblyAuthor>
<AssemblyDescription>Common utility code used by Float projects.</AssemblyDescription>
Expand Down

0 comments on commit 0351dd7

Please sign in to comment.