|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
2 | 2 | <PropertyGroup>
|
3 |
| - <TargetFrameworks>netstandard2.0</TargetFrameworks> |
| 3 | + <TargetFrameworks>netstandard2.0;net472</TargetFrameworks> |
4 | 4 | <RootNamespace>SimpleBase</RootNamespace>
|
5 | 5 | <AssemblyName>SimpleBase</AssemblyName>
|
6 | 6 | <Copyright>Copyright 2014-2019 Sedat Kapanoglu</Copyright>
|
|
12 | 12 | <AssemblyOriginatorKeyFile>..\SimpleBase.snk</AssemblyOriginatorKeyFile>
|
13 | 13 | <DelaySign>false</DelaySign>
|
14 | 14 |
|
15 |
| - <PackageVersion>2.0.0</PackageVersion> |
| 15 | + <PackageVersion>2.1.0</PackageVersion> |
16 | 16 | <CodeAnalysisRuleSet>../SSG.ruleset</CodeAnalysisRuleSet>
|
17 | 17 | <DocumentationFile>SimpleBase.xml</DocumentationFile>
|
18 | 18 | <PackageProjectUrl>https://github.com/ssg/SimpleBase</PackageProjectUrl>
|
|
21 | 21 | <PackageTags>base16 base32 base58 base85 ascii85 z85 hexadecimal bitcoin ripple flickr crockford extended hex rfc4648 z-base-32 geohash</PackageTags>
|
22 | 22 | <PackageReleaseNotes>
|
23 | 23 | <![CDATA[
|
24 |
| -# Breaking changes |
25 |
| -- Adapted to nullable references |
26 |
| -- Encoder references are now properties instead of static fields |
27 |
| -
|
28 |
| -# New stuff |
29 |
| -- Async variants of Stream-based encoding/decoding methods |
30 |
| -- New Base32 variants: z-base-32 and Geohash |
31 |
| -- XML documentation is included in the package now |
32 |
| -- SimpleBase is now on GitHub Package Repository |
33 |
| -
|
34 | 24 | # Improvements
|
35 |
| -- Base58 decoding is 100+% faster and encoding is slightly faster, too |
36 |
| -- Reduced startup overhead |
37 |
| -- Updated dependencies to newer packages |
38 |
| -- Removed redundant null checking code |
39 |
| -- Base58's Ripple and Flickr variants are now being tested |
| 25 | +- Produce native .NET 4.7.2 binaries which hopefully removes the scaffolding overhead |
40 | 26 | ]]></PackageReleaseNotes>
|
41 | 27 | <LangVersion>latest</LangVersion>
|
42 | 28 | <Nullable>enable</Nullable>
|
|
0 commit comments