From 2fc026750fd945ca98657d8e569505075c71a890 Mon Sep 17 00:00:00 2001 From: Stefan Weibel Date: Mon, 6 Jan 2020 16:52:54 +0100 Subject: [PATCH 1/5] Add support for net46 --- src/AngleSharp.Io/AngleSharp.Io.csproj | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/AngleSharp.Io/AngleSharp.Io.csproj b/src/AngleSharp.Io/AngleSharp.Io.csproj index 33fa4e0..f23f93c 100644 --- a/src/AngleSharp.Io/AngleSharp.Io.csproj +++ b/src/AngleSharp.Io/AngleSharp.Io.csproj @@ -1,8 +1,8 @@ - + AngleSharp.Io AngleSharp.Io - netstandard2.0 + netstandard2.0;net46 true Key.snk true @@ -11,6 +11,11 @@ + + + + + From e223ef9ba29eb533dc7114a6f2b2736caad913d1 Mon Sep 17 00:00:00 2001 From: Stefan Weibel Date: Mon, 6 Jan 2020 18:21:23 +0100 Subject: [PATCH 2/5] removed package references used when testing .netstandard 1.X --- src/AngleSharp.Io/AngleSharp.Io.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/AngleSharp.Io/AngleSharp.Io.csproj b/src/AngleSharp.Io/AngleSharp.Io.csproj index f23f93c..0301a58 100644 --- a/src/AngleSharp.Io/AngleSharp.Io.csproj +++ b/src/AngleSharp.Io/AngleSharp.Io.csproj @@ -11,7 +11,6 @@ - From 808a90c155dda179ebfcc4ce425d30347b83be00 Mon Sep 17 00:00:00 2001 From: Stefan Date: Mon, 6 Jan 2020 20:34:09 +0100 Subject: [PATCH 3/5] Add net46 to the build.cake Updated build.cake to build for .net framework 4.6 --- build.cake | 1 + 1 file changed, 1 insertion(+) diff --git a/build.cake b/build.cake index 1c2506b..c97a440 100644 --- a/build.cake +++ b/build.cake @@ -4,6 +4,7 @@ var solutionName = "AngleSharp.Io"; var frameworks = new Dictionary { { "netstandard2.0", "netstandard2.0" }, + { "net46", "net46" }, }; #load tools/anglesharp.cake From fa012a1cc2e2ff2545a5b1bd38fab33c4709aaf5 Mon Sep 17 00:00:00 2001 From: Stefan Date: Mon, 6 Jan 2020 20:38:20 +0100 Subject: [PATCH 4/5] Update with suggestion for changelog.md Updated changelog.md for 0.14.0 with support for .net framework 4.6 (net46) --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a30955..5af6939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.14.0 + +Released on Monday, January 6 2020. + +- Added support for .net framework 4.6 + # 0.13.1 Released on Tuesday, September 24 2019. From 2970ab158c0517cd32ef3a322265b1ef52a7bd12 Mon Sep 17 00:00:00 2001 From: Florian Rappl Date: Tue, 31 Mar 2020 23:47:32 +0200 Subject: [PATCH 5/5] Updated to latest version --- CHANGELOG.md | 7 +++++-- LICENSE | 2 +- README.md | 2 +- build.cake | 4 +++- .../AngleSharp.Io.Tests.csproj | 11 ++++++---- src/AngleSharp.Io.nuspec | 2 +- src/AngleSharp.Io/AngleSharp.Io.csproj | 21 +++++++++++++++++-- src/Directory.Build.props | 2 +- 8 files changed, 38 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5af6939..8030bb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # 0.14.0 -Released on Monday, January 6 2020. +Released on Tuesday, March 31 2020. -- Added support for .net framework 4.6 +- Added support for .NET framework 4.6 +- Added support for .NET framework 4.6.1 +- Added support for .NET framework 4.7.2 +- Added shallow support for source link # 0.13.1 diff --git a/LICENSE b/LICENSE index c2b5b2b..1fa14f2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013 - 2019 AngleSharp +Copyright (c) 2013 - 2020 AngleSharp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 7cdc669..1c6019e 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org) The MIT License (MIT) -Copyright (c) 2015 - 2019 AngleSharp +Copyright (c) 2015 - 2020 AngleSharp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/build.cake b/build.cake index c97a440..b21da6d 100644 --- a/build.cake +++ b/build.cake @@ -3,8 +3,10 @@ var projectName = "AngleSharp.Io"; var solutionName = "AngleSharp.Io"; var frameworks = new Dictionary { - { "netstandard2.0", "netstandard2.0" }, { "net46", "net46" }, + { "net461", "net461" }, + { "net472", "net472" }, + { "netstandard2.0", "netstandard2.0" }, }; #load tools/anglesharp.cake diff --git a/src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj b/src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj index cbc9605..526e7cd 100644 --- a/src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj +++ b/src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj @@ -14,10 +14,13 @@ - - - - + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + diff --git a/src/AngleSharp.Io.nuspec b/src/AngleSharp.Io.nuspec index 1ab4f0b..80c0f20 100644 --- a/src/AngleSharp.Io.nuspec +++ b/src/AngleSharp.Io.nuspec @@ -14,7 +14,7 @@ Copyright 2016-2019, AngleSharp html html5 css css3 dom requester http https io filesystem storage httpclient cache - + diff --git a/src/AngleSharp.Io/AngleSharp.Io.csproj b/src/AngleSharp.Io/AngleSharp.Io.csproj index 0301a58..203c615 100644 --- a/src/AngleSharp.Io/AngleSharp.Io.csproj +++ b/src/AngleSharp.Io/AngleSharp.Io.csproj @@ -2,19 +2,36 @@ AngleSharp.Io AngleSharp.Io - netstandard2.0;net46 + netstandard2.0 + netstandard2.0;net46;net461;net472 true Key.snk true 7.1 + https://github.com/AngleSharp/AngleSharp.Io + git + true + true + true + snupkg - + + + + + + + + + + + diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 62e86f3..ac981b9 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -2,6 +2,6 @@ Providers additional requesters and IO helpers for AngleSharp. AngleSharp.Io - 0.13.1 + 0.14.0 \ No newline at end of file