Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
nietras committed Jan 12, 2025
2 parents 5eb49fd + accd807 commit ac0b1ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Sep - ~~Possibly~~ the World's Fastest .NET CSV Parser
![.NET](https://img.shields.io/badge/net7.0%20net8.0%20net9.0-5C2D91?logo=.NET&labelColor=gray)
![.NET](https://img.shields.io/badge/net8.0%20net9.0-5C2D91?logo=.NET&labelColor=gray)
![C#](https://img.shields.io/badge/C%23-13.0-239120?labelColor=gray)
[![Build Status](https://github.com/nietras/Sep/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/nietras/Sep/actions/workflows/dotnet.yml)
[![Super-Linter](https://github.com/nietras/Sep/actions/workflows/super-linter.yml/badge.svg)](https://github.com/marketplace/actions/super-linter)
Expand Down
1 change: 0 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<Copyright>Copyright © nietras A/S 2023</Copyright>
<NeutralLanguage>en</NeutralLanguage>

<!--<TargetFrameworks>net9.0;net8.0;net7.0</TargetFrameworks>-->
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>

Expand Down
4 changes: 0 additions & 4 deletions src/Sep.XyzTest/Sep.XyzTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
<RootNamespace>nietras.SeparatedValues.XyzTest</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>

<!-- PublicApiGenerator references System.CodeDom which annoying warns about
net7.0 so have to suppress all -->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion src/Sep/CompatibilitySuppressions.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/diagnostic-ids -->
<!-- https://learn.microsoft.com/dotnet/fundamentals/package-validation/diagnostic-ids -->
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Suppression>
<DiagnosticId>PKV006</DiagnosticId>
<Target>net7.0</Target>
</Suppression>
</Suppressions>

0 comments on commit ac0b1ca

Please sign in to comment.