Skip to content

Commit

Permalink
added target framework 8
Browse files Browse the repository at this point in the history
  • Loading branch information
stanac committed Sep 15, 2023
1 parent 1366a4b commit 9c5155a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## v6.0
## v6.1
- Added target framework 8 (6 and 7 are still supported)

## v6.0
- Changed framework dependency from netstandard1.6 to net6.0

## v5.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Primary goal of this library is to enable users with little or no cryptography knowledge to encrypt and decrypt data in an easy and
safe manner as well work with passwords and random values.

EasyCrypto is .NET 6+ library that helps with
EasyCrypto is .NET 6, 7, 8+ library that helps with
- Encryption and decryption of streams, byte arrays, strings and files
- Password generating, hashing and validating
- Generating crypto secure random bytes, integers and doubles
Expand Down
2 changes: 1 addition & 1 deletion nuget-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Primary goal of this library is to enable users with little or no cryptography knowledge to encrypt and decrypt data in an easy and
safe manner as well work with passwords and random values.

EasyCrypto is .NET 6+ library that helps with
EasyCrypto is .NET 6, 7, 8 library that helps with
- Encryption and decryption of streams, byte arrays, strings and files
- Password generating, hashing and validating
- Generating crypto secure random bytes, integers and doubles
Expand Down
4 changes: 2 additions & 2 deletions src/EasyCrypto/EasyCrypto.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>11</LangVersion>
<Version>6.0.0</Version>
<Version>6.1.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>

<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion tests/EasyCrypto.Tests/EasyCrypto.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down

0 comments on commit 9c5155a

Please sign in to comment.