Skip to content

Commit 08a7bfd

Browse files
committed
review feedback
1 parent fd70ee3 commit 08a7bfd

File tree

5 files changed

+6
-14
lines changed

5 files changed

+6
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Every collection in AngleSharp supports LINQ statements. AngleSharp also provide
7070
AngleSharp has been created as a .NET Standard 2.0 compatible library. This includes, but is not limited to:
7171

7272
- .NET Core (2.0 and later)
73-
- .NET Framework (4.6.1 and later)
73+
- .NET Framework (4.6.2 and later)
7474
- Xamarin.Android (7.0 and 8.0)
7575
- Xamarin.iOS (10.0 and 10.14)
7676
- Xamarin.Mac (3.0 and 3.8)

docs/general/01-Basics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ section: "AngleSharp.Core"
66

77
## Requirements
88

9-
AngleSharp comes currently in two flavors: on Windows for .NET 4.6.1 or newer and in general targeting .NET Standard 2.0 platforms.
9+
AngleSharp comes currently in two flavors: on Windows for .NET 4.6.2 or newer and in general targeting .NET Standard 2.0 platforms.
1010

11-
Most of the features of the library do not require .NET 4.6.1, which means you could create your own fork and modify it to work with previous versions of the .NET-Framework.
11+
Most of the features of the library do not require .NET 4.6.2, which means you could create your own fork and modify it to work with previous versions of the .NET-Framework.
1212

1313
## Getting AngleSharp over NuGet
1414

src/AngleSharp.Core.Tests/AngleSharp.Core.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageReference Include="NUnit" Version="3.14.0" />
1717
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
19-
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" Condition="'$(TargetFramework)' == 'net472' or '$(TargetFramework)' == 'net461'" />
19+
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

src/AngleSharp.Core.sln

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
AngleSharp.nuspec = AngleSharp.nuspec
1313
Directory.Build.props = Directory.Build.props
1414
..\.editorconfig = ..\.editorconfig
15+
..\README.md = ..\README.md
1516
EndProjectSection
1617
EndProject
1718
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AngleSharp.Core.Tests", "AngleSharp.Core.Tests\AngleSharp.Core.Tests.csproj", "{C3074D7E-CA6C-4F2C-813D-BD97462DC3EB}"

src/AngleSharp.nuspec

+1-10
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,12 @@
1919
<group targetFramework="netstandard2.0">
2020
<dependency id="System.Text.Encoding.CodePages" version="7.0.0" />
2121
</group>
22-
<group targetFramework="net461">
22+
<group targetFramework="net462">
2323
<dependency id="System.Text.Encoding.CodePages" version="6.0.0" />
2424
</group>
2525
<group targetFramework="net472">
2626
<dependency id="System.Text.Encoding.CodePages" version="6.0.0" />
2727
</group>
28-
<group targetFramework="net60">
29-
<dependency id="System.Text.Encoding.CodePages" version="6.0.0" />
30-
</group>
31-
<group targetFramework="net70">
32-
<dependency id="System.Text.Encoding.CodePages" version="7.0.0" />
33-
</group>
34-
<group targetFramework="net80">
35-
<dependency id="System.Text.Encoding.CodePages" version="8.0.0" />
36-
</group>
3728
</dependencies>
3829
</metadata>
3930
</package>

0 commit comments

Comments
 (0)