Skip to content

Commit

Permalink
remove .NET 5 (reached end of life). Leave .netstandard 2.0, net 3.1 …
Browse files Browse the repository at this point in the history
…and 6.0.
  • Loading branch information
aloneguid committed Oct 11, 2022
1 parent e13d4cd commit 2e5ef1e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
VERSION: 4.0.0
VERSION: 4.0.1
ASM_VERSION: 4.0.0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@



**Fully portable, managed** .NET library to read and write [Apache Parquet](https://parquet.apache.org/) files. Supports `.NET 6.0`, `.NET 5.0`, and `.NET Standard 2.0`.
**Fully portable, managed** .NET library to read and write [Apache Parquet](https://parquet.apache.org/) files. Supports `.NET 6.0`, `.NET Core 3.1`, and `.NET Standard 2.0`.

Runs everywhere .NET runs Linux, MacOS, Windows, iOS, Android, Tizen, Xbox, PS4, Raspberry Pi, Samsung TVs and much more.

Expand Down
2 changes: 1 addition & 1 deletion src/Parquet.Test/Parquet.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>

Expand Down
4 changes: 1 addition & 3 deletions src/Parquet/3rdparty/Thrift/Collections/THashSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ public THashSet()
public THashSet(int capacity)
#if NET5_0_OR_GREATER
: base(capacity)
#elif NETFRAMEWORK || NETSTANDARD
: base(/*capacity not supported*/)
#else
#error Unknown platform
: base(/*capacity not supported*/)
#endif
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/Parquet/Parquet.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net6.0</TargetFrameworks>
<Description>
Pure managed .NET library to read and write Apache Parquet files, targeting .NET Standand 2.0 and up.

Expand Down

0 comments on commit 2e5ef1e

Please sign in to comment.