Skip to content

Commit

Permalink
Drop .Net 5. and .Net 7.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel authored Sep 4, 2024
1 parent 08e862e commit 16e0bf1
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Code of Conduct](https://img.shields.io/badge/%E2%9D%A4-code%20of%20conduct-blue.svg?style=flat)](https://github.com/Qowaiv/qowaiv-json/blob/master/CODE_OF_CONDUCT.md)

| version | package |
|---------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
|![v](https://img.shields.io/badge/version-4.2.0-blue.svg?cacheSeconds=3600)|[Qowaiv.Json.Newtonsoft](https://www.nuget.org/packages/Qowaiv.Json.Newtonsoft/) |
|![v](https://img.shields.io/badge/version-4.2.0-blue.svg?cacheSeconds=3600)|[Qowaiv.Text.Json.Serialization](https://www.nuget.org/packages/Qowaiv.Text.Json.Serialization/)|
|![v](https://img.shields.io/badge/version-4.3.1-blue.svg?cacheSeconds=3600)|[Qowaiv.Bson.MongoDB](https://www.nuget.org/packages/Qowaiv.Bson.MongoDB/) |
| version | downloads | package |
|-----------------------------------------------------------------------------|--------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
|![v](https://img.shields.io/nuget/v/Qowaiv.Json.Newtonsoft?color=18C) |![v](https://img.shields.io/nuget/dt/Qowaiv.Json.Newtonsoft) |[Qowaiv.Json.Newtonsoft](https://www.nuget.org/packages/Qowaiv.Json.Newtonsoft/) |
|![v](https://img.shields.io/nuget/v/Qowaiv.Text.Json.Serialization?color=18C)|![v](https://img.shields.io/nuget/dt/Qowaiv.Text.Json.Serialization)|[Qowaiv.Text.Json.Serialization](https://www.nuget.org/packages/Qowaiv.Text.Json.Serialization/)|
|![v](https://img.shields.io/nuget/v/Qowaiv.Bson.MongoDB?color=18C) |![v](https://img.shields.io/nuget/dt/Qowaiv.Bson.MongoDB) |[Qowaiv.Bson.MongoDB](https://www.nuget.org/packages/Qowaiv.Bson.MongoDB/) |

# Qowaiv JSON
Serializing data using JSON is common practice. However, .NET has no generic
Expand Down
3 changes: 2 additions & 1 deletion props/package.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\build\Qowaiv.snk</AssemblyOriginatorKeyFile>
<EnablePackageValidation>true</EnablePackageValidation>
<!-- temporary disable -->
<EnablePackageValidation>false</EnablePackageValidation>
<PackageValidationBaselineVersion>4.2.0</PackageValidationBaselineVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
Expand Down
18 changes: 11 additions & 7 deletions src/Qowaiv.Bson.MongoDB/Qowaiv.Bson.MongoDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
<Import Project="..\..\props\package.props" />

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<PackageId>Qowaiv.Bson.MongoDB</PackageId>
<Version>4.3.1</Version>
<Version>5.0.0</Version>
<PackageIcon>package-icon-bson.png</PackageIcon>
<PackageReleaseNotes>
<![CDATA[
v5.0.0
- Only support netstandard2.0, net6.0, and net8.0. (BREAKING)
v4.3.1
- QowaivBsonSerializationProvider support nullable value-types. #21
- QowaivBsonSerializationProvider thread-safe. #20
Expand All @@ -19,15 +22,13 @@ v4.3.0
v4.2.0
- Registered SvoBehavior as Svo&lt;TSvoBehavior&gt;. #13
- Multi-targeted to netstandard2.0, .NET 5.0, and .NET 6.0. #12

v4.1.0
- Registered IIdentifierBehavior as Id&lt;TBehavior&gt;. #7

v4.0.2
- Only register exported.

v4.0.1
- Fix reading null nodes.
]]>
</PackageReleaseNotes>
</PropertyGroup>

Expand All @@ -39,12 +40,15 @@ v4.0.1
<Compile Include="..\..\shared\Guard.cs" Link="Guard.cs" />
<Compile Include="..\..\shared\ImpureAttribute.cs" Link="Qowaiv.Diagnostics\Contracts\ImpureAttribute.cs" />
<Compile Include="..\..\shared\InheritableAttribute.cs" Link="Qowaiv.Diagnostics\Contracts\InheritableAttribute.cs" />
<None Include="package-icon-bson.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<None Remove="..\..\design\package-icon.png" />
<None Include="package-icon-bson.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="MongoDB.Bson" Version="[2.13.1,)" />
<PackageReference Include="MongoDB.Bson" Version="[2.28.0,)" />
</ItemGroup>

<ItemGroup Label="Analyzers">
Expand Down
6 changes: 5 additions & 1 deletion src/Qowaiv.Json.Newtonsoft/Qowaiv.Json.Newtonsoft.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<PackageId>Qowaiv.Json.Newtonsoft</PackageId>
<Version>4.2.0</Version>
<Version>5.0.0</Version>
<PackageReleaseNotes>
<![CDATA[
v5.0.0
- Only support netstandard2.0, net6.0, and net8.0. (BREAKING)
v4.2.0
- Multi-targeted to netstandard2.0, .NET 5.0, and .NET 6.0. #12
]]>
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
<Import Project="..\..\props\package.props" />

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<PackageId>Qowaiv.Text.Json.Serialization</PackageId>
<Version>4.2.0</Version>
<Version>5.0.0</Version>
<PackageReleaseNotes>
<![CDATA[
v5.0.0
- Only support net6.0 and net8.0. (BREAKING)
v4.2.0
- Multi-targeted to netstandard2.0, .NET 5.0, and .NET 6.0. #12
]]>
</PackageReleaseNotes>
</PropertyGroup>

Expand Down

0 comments on commit 16e0bf1

Please sign in to comment.