Skip to content

Commit b9b2d43

Browse files
committed
nuget package
1 parent 088eb60 commit b9b2d43

File tree

8 files changed

+17
-15
lines changed

8 files changed

+17
-15
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# FolkerKinzel.DataUrls
22
[![NuGet](https://img.shields.io/nuget/v/FolkerKinzel.DataUrls)](https://www.nuget.org/packages/FolkerKinzel.DataUrls/)
33
[![GitHub](https://img.shields.io/github/license/FolkerKinzel/DataUrls)](https://github.com/FolkerKinzel/DataUrls/blob/master/LICENSE)
4+
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
45

56
## .NET library that supports working with "data" URLs (RFC 2397)
67

src/Benchmarks/Benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
11+
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
1212
</ItemGroup>
1313

1414
<ItemGroup>
Binary file not shown.

src/FolkerKinzel.DataUrls.Tests/FolkerKinzel.DataUrls.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<PrivateAssets>all</PrivateAssets>
3838
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3939
</PackageReference>
40-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
41-
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
42-
<PackageReference Include="MSTest.TestFramework" Version="3.3.1" />
40+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
41+
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
42+
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
4343
<PackageReference Include="coverlet.collector" Version="6.0.2">
4444
<PrivateAssets>all</PrivateAssets>
4545
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/FolkerKinzel.DataUrls/FolkerKinzel.DataUrls.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0;netstandard2.1;netstandard2.0;net461</TargetFrameworks>
3+
<TargetFrameworks>net8.0;netstandard2.1;netstandard2.0;net462</TargetFrameworks>
44
<NeutralLanguage>en</NeutralLanguage>
55
<Nullable>enable</Nullable>
66
<LangVersion>12.0</LangVersion>
@@ -11,12 +11,12 @@
1111
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1212
<PackageIcon>Logo.png</PackageIcon>
1313
<PackageReadmeFile>NugetReadme.md</PackageReadmeFile>
14-
<PackageVersion>1.1.3</PackageVersion>
15-
<FileVersion>1.1.3.0</FileVersion>
14+
<PackageVersion>1.2.0</PackageVersion>
15+
<FileVersion>1.2.0.0</FileVersion>
1616
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1717
<Description>.NET library that supports working with "data" URLs (RFC 2397)</Description>
1818
<PackageTags>"data"URL RFC2397 C# .NET</PackageTags>
19-
<PackageReleaseNotes>https://github.com/FolkerKinzel/DataUrls/releases/tag/v1.1.3</PackageReleaseNotes>
19+
<PackageReleaseNotes>https://github.com/FolkerKinzel/DataUrls/releases/tag/v1.2.0</PackageReleaseNotes>
2020
<PackageIconUrl />
2121
<PackageProjectUrl>https://github.com/FolkerKinzel/DataUrls</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/FolkerKinzel/DataUrls.git</RepositoryUrl>
@@ -35,7 +35,7 @@
3535
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
3636
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
3737
</PropertyGroup>
38-
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
38+
<PropertyGroup Condition="'$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'netstandard2.0'">
3939
<NoWarn>$(NoWarn);8600;8601;8602;8603;8604</NoWarn>
4040
</PropertyGroup>
4141
<ItemGroup>
@@ -73,7 +73,7 @@
7373
</None>
7474
</ItemGroup>
7575
<ItemGroup>
76-
<PackageReference Include="FolkerKinzel.MimeTypes" Version="5.3.1" />
76+
<PackageReference Include="FolkerKinzel.MimeTypes" Version="5.4.0" />
7777
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
7878
<PrivateAssets>all</PrivateAssets>
7979
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/FolkerKinzel.DataUrls/Intls/HashCodeExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace FolkerKinzel.DataUrls.Intls;
22

3-
#if NET461 || NETSTANDARD2_0 || NETSTANDARD2_1 || NET5_0
3+
#if NET462 || NETSTANDARD2_0 || NETSTANDARD2_1 || NET5_0
44

55
internal static class HashCodeExtension
66
{

src/FolkerKinzel.DataUrls/md/NugetReadme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## .NET library that supports working with "data" URLs (RFC 2397)
55

6-
[Project Reference and Release Notes](https://github.com/FolkerKinzel/DataUrls/releases/tag/v1.1.3)
6+
[Project Reference and Release Notes](https://github.com/FolkerKinzel/DataUrls/releases/tag/v1.2.0)
77

88
The library contains the static `DataUrl` class that supports the "data" URL scheme ([RFC 2397](https://datatracker.ietf.org/doc/html/rfc2397)), which allows to embed data in a URI. The `DataUrl` class allows
99
- building "data" URL strings from files, byte arrays or text,
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
**It's strongly recommended to install this update:**
2-
- Dependency updates: Uses `FolkerKinzel.Strings 9.0.0` now. This update **fixes an important issue**.
1+
- Replaces .NET Framework 4.6.1 support with .NET Framework 4.6.2 support
2+
- Dependency updates
3+
34
&nbsp;
4-
>**Project reference:** On some systems, the content of the CHM file in the Assets is blocked. Before opening the file right click on the file icon, select Properties, and **check the "Allow" checkbox** - if it is present - in the lower right corner of the General tab in the Properties dialog.
5+
> **Project reference:** On some systems, the content of the CHM file in the Assets is blocked. Before opening the file right click on the file icon, select Properties, and **check the "Allow" checkbox** - if it is present - in the lower right corner of the General tab in the Properties dialog.

0 commit comments

Comments
 (0)