|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>net20;net35;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472;net48</TargetFrameworks> |
4 | | - <Version>1.5.0</Version> |
| 3 | + <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> |
| 4 | + <Version>1.6.0</Version> |
5 | 5 | <Authors>Lakhya Jyoti Nath</Authors> |
6 | 6 | <Company>Lakhya's Innovation Inc.</Company> |
7 | 7 | <Description>.NET library to generate N random strings of M length from various categories</Description> |
8 | | - <Copyright>Copyright © Lakhya's Innovation Inc. 2023</Copyright> |
| 8 | + <Copyright>Copyright © 2020-2023 Lakhya's Innovation Inc.</Copyright> |
9 | 9 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
10 | 10 | <PackageProjectUrl>https://github.com/ljnath/RandomString4Net</PackageProjectUrl> |
11 | 11 | <RepositoryType>git</RepositoryType> |
12 | 12 | <RepositoryUrl>https://github.com/ljnath/RandomString4Net.git</RepositoryUrl> |
13 | 13 | <PackageTags>randomstring4net ljnath lakhya lakhyajyoti innovation lakhya's inc. lakhyajyotinath randomstring random string C# libray password generator passwordgenerator generation symbols randomsymbols lowercase uppercase mixedcase customsymbols randomnumber number</PackageTags> |
14 | | - <PackageReleaseNotes> |
15 | | -- Initial release with support for alphabet, alphanumeric with any without symbols for all cases |
| 14 | + <PackageReleaseNotes>- Initial release with support for alphabet, alphanumeric with any without symbols for all cases |
16 | 15 | - Added support for random number generation |
17 | 16 | - Added support for multiple .NET Framework |
18 | 17 | - Added support to generate true unique random numbers |
19 | 18 | - Added performance improvement for .NET Framework > 2.0 |
20 | | -- Added support to generate random strings by including strings of each type</PackageReleaseNotes> |
21 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
22 | | - <AssemblyVersion>1.5.0.0</AssemblyVersion> |
23 | | - <FileVersion>1.5.0.0</FileVersion> |
| 19 | +- Added support to generate random strings by including strings of each type |
| 20 | +- Added support for .NET (>5.0) |
| 21 | +- Added support for .NET Core (>2.2) |
| 22 | +- Added support for .NET Standard (>2.0)</PackageReleaseNotes> |
| 23 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 24 | + <AssemblyVersion>1.6.0.0</AssemblyVersion> |
| 25 | + <FileVersion>1.6.0.0</FileVersion> |
24 | 26 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 27 | + <AutoGenerateBindingRedirects>False</AutoGenerateBindingRedirects> |
| 28 | + <Title>$(AssemblyName)</Title> |
| 29 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 30 | + <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
| 31 | + <EnableNETAnalyzers>True</EnableNETAnalyzers> |
| 32 | + <SignAssembly>True</SignAssembly> |
| 33 | + <AssemblyOriginatorKeyFile>C:\devtools\keys\code_signing_ljnath.pfx</AssemblyOriginatorKeyFile> |
| 34 | + <IncludeSymbols>False</IncludeSymbols> |
25 | 35 | </PropertyGroup> |
| 36 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net20|AnyCPU'"> |
| 37 | + <DebugType>full</DebugType> |
| 38 | + </PropertyGroup> |
| 39 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net35|AnyCPU'"> |
| 40 | + <DebugType>full</DebugType> |
| 41 | + </PropertyGroup> |
| 42 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'"> |
| 43 | + <DebugType>full</DebugType> |
| 44 | + </PropertyGroup> |
| 45 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'"> |
| 46 | + <DebugType>full</DebugType> |
| 47 | + </PropertyGroup> |
| 48 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net451|AnyCPU'"> |
| 49 | + <DebugType>full</DebugType> |
| 50 | + </PropertyGroup> |
| 51 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'"> |
| 52 | + <DebugType>full</DebugType> |
| 53 | + </PropertyGroup> |
| 54 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net46|AnyCPU'"> |
| 55 | + <DebugType>full</DebugType> |
| 56 | + </PropertyGroup> |
| 57 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net461|AnyCPU'"> |
| 58 | + <DebugType>full</DebugType> |
| 59 | + </PropertyGroup> |
| 60 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net462|AnyCPU'"> |
| 61 | + <DebugType>full</DebugType> |
| 62 | + </PropertyGroup> |
| 63 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net47|AnyCPU'"> |
| 64 | + <DebugType>full</DebugType> |
| 65 | + </PropertyGroup> |
| 66 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net471|AnyCPU'"> |
| 67 | + <DebugType>full</DebugType> |
| 68 | + </PropertyGroup> |
| 69 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net472|AnyCPU'"> |
| 70 | + <DebugType>full</DebugType> |
| 71 | + </PropertyGroup> |
| 72 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net48|AnyCPU'"> |
| 73 | + <DebugType>full</DebugType> |
| 74 | + </PropertyGroup> |
| 75 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'"> |
| 76 | + <DebugType>full</DebugType> |
| 77 | + </PropertyGroup> |
| 78 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net20|AnyCPU'"> |
| 79 | + <DebugType>full</DebugType> |
| 80 | + </PropertyGroup> |
| 81 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net35|AnyCPU'"> |
| 82 | + <DebugType>full</DebugType> |
| 83 | + </PropertyGroup> |
| 84 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'"> |
| 85 | + <DebugType>full</DebugType> |
| 86 | + </PropertyGroup> |
| 87 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'"> |
| 88 | + <DebugType>full</DebugType> |
| 89 | + </PropertyGroup> |
| 90 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net451|AnyCPU'"> |
| 91 | + <DebugType>full</DebugType> |
| 92 | + </PropertyGroup> |
| 93 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'"> |
| 94 | + <DebugType>full</DebugType> |
| 95 | + </PropertyGroup> |
| 96 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net46|AnyCPU'"> |
| 97 | + <DebugType>full</DebugType> |
| 98 | + </PropertyGroup> |
| 99 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'"> |
| 100 | + <DebugType>full</DebugType> |
| 101 | + </PropertyGroup> |
| 102 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'"> |
| 103 | + <DebugType>full</DebugType> |
| 104 | + </PropertyGroup> |
| 105 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net47|AnyCPU'"> |
| 106 | + <DebugType>full</DebugType> |
| 107 | + </PropertyGroup> |
| 108 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net471|AnyCPU'"> |
| 109 | + <DebugType>full</DebugType> |
| 110 | + </PropertyGroup> |
| 111 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net472|AnyCPU'"> |
| 112 | + <DebugType>full</DebugType> |
| 113 | + </PropertyGroup> |
| 114 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'"> |
| 115 | + <DebugType>full</DebugType> |
| 116 | + </PropertyGroup> |
| 117 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'"> |
| 118 | + <DebugType>full</DebugType> |
| 119 | + </PropertyGroup> |
| 120 | + <ItemGroup> |
| 121 | + <Compile Remove="build\**" /> |
| 122 | + <EmbeddedResource Remove="build\**" /> |
| 123 | + <None Remove="build\**" /> |
| 124 | + </ItemGroup> |
| 125 | + <ItemGroup> |
| 126 | + <None Include="..\README.md"> |
| 127 | + <Pack>True</Pack> |
| 128 | + <PackagePath>\</PackagePath> |
| 129 | + </None> |
| 130 | + </ItemGroup> |
26 | 131 | </Project> |
0 commit comments