Skip to content

Commit 69ac53c

Browse files
committed
say it with me
1 parent e041803 commit 69ac53c

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

Directory.Build.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1616
</PropertyGroup>
1717

18+
<PropertyGroup>
19+
<SuppressTfmSupportBuildErrors>true</SuppressTfmSupportBuildErrors>
20+
</PropertyGroup>
21+
1822
<ItemGroup>
1923
<PackageReference Include="Roslynator.Analyzers" Version="4.*" PrivateAssets="all" />
2024
<PackageReference Include="Meziantou.Analyzer" Version="3.*" PrivateAssets="all" />

src/PolylineAlgorithm/PolylineEncoding.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public static int Normalize(double value, uint precision = 5) {
8383
checked {
8484
return (int)(Math.Truncate(value * 10 * factor) / 10);
8585
}
86+
8687
}
8788

8889
/// <summary>

tests/PolylineAlgorithm.Tests/PolylineAlgorithm.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0;</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

0 commit comments

Comments
 (0)