Skip to content

Commit

Permalink
v1.7.0 - added support for .net5.0, .net6.0 and .net7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ljnath committed Nov 1, 2023
1 parent 11b34f9 commit a9195f3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# RandomString4Net
### Version 1.6.0
### Version 1.7.0

Author : Lakhya Jyoti Nath (ljnath)<br>
Date : September 2020 - December 2022 - January 2023 - October 2023<br>
Date : September 2020 - December 2022 - January 2023 - October 2023 - November 2023<br>
Email : [email protected]<br>
Website : https://www.ljnath.com

[![Nuget](https://img.shields.io/nuget/v/RandomString4Net)](https://www.nuget.org/packages/RandomString4Net/)
[![Nuget](https://img.shields.io/nuget/dt/RandomString4Net)](https://www.nuget.org/stats/packages/RandomString4Net)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/ljnath/RandomString4Net/dotnet-CI-workflow.yml)](https://github.com/ljnath/RandomString4Net/actions)
![GitHub](https://img.shields.io/github/license/ljnath/RandomString4Net)


Expand Down
11 changes: 8 additions & 3 deletions RandomString4Net.sln
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30330.147
# Visual Studio Version 17
VisualStudioVersion = 17.7.34221.43
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RandomString4NetTester", "RandomString4NetTester\RandomString4NetTester.csproj", "{0AF6F74C-E5B1-4E6A-8609-42208938ABD3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RandomString4NetTest", "RandomString4NetTest\RandomString4NetTest.csproj", "{12C4F675-E7CE-4B15-889A-EC269AA8E4B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RandomString4Net", "RandomString4Net\RandomString4Net.csproj", "{F0A77092-0C76-4151-843C-CD1BD33174B0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RandomString4Net", "RandomString4Net\RandomString4Net.csproj", "{F0A77092-0C76-4151-843C-CD1BD33174B0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FA42BC52-B3AE-465A-BCCF-EDA5F1FF8804}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
8 changes: 4 additions & 4 deletions RandomString4Net/RandomString4Net.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net20;net35;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472;net48;netcoreapp2.0;netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;netcoreapp3.1;netstandard2.0;netstandard2.1;net5.0-windows;net6.0-windows;net7.0-windows</TargetFrameworks>
<Version>1.6.0</Version>
<TargetFrameworks>net20;net35;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472;net48;netcoreapp2.0;netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;netcoreapp3.1;netstandard2.0;netstandard2.1;net5.0-windows;net6.0-windows;net7.0-windows;net5.0;net6.0;net7.0</TargetFrameworks>
<Version>1.7.0</Version>
<Authors>Lakhya Jyoti Nath</Authors>
<Company>Lakhya's Innovation Inc.</Company>
<Description>.NET library to generate N random strings of M length from various categories</Description>
Expand All @@ -21,8 +21,8 @@
- Added support for .NET Core (&gt;2.2)
- Added support for .NET Standard (&gt;2.0)</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>1.6.0.0</AssemblyVersion>
<FileVersion>1.6.0.0</FileVersion>
<AssemblyVersion>1.7.0.0</AssemblyVersion>
<FileVersion>1.7.0.0</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<AutoGenerateBindingRedirects>False</AutoGenerateBindingRedirects>
<Title>$(AssemblyName)</Title>
Expand Down

0 comments on commit a9195f3

Please sign in to comment.