Skip to content

Commit 61805ed

Browse files
authored
Merge pull request #26 from AngleSharp/devel
Release 0.14.0
2 parents c26cbce + 2970ab1 commit 61805ed

File tree

8 files changed

+47
-11
lines changed

8 files changed

+47
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.14.0
2+
3+
Released on Tuesday, March 31 2020.
4+
5+
- Added support for .NET framework 4.6
6+
- Added support for .NET framework 4.6.1
7+
- Added support for .NET framework 4.7.2
8+
- Added shallow support for source link
9+
110
# 0.13.1
211

312
Released on Tuesday, September 24 2019.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 - 2019 AngleSharp
3+
Copyright (c) 2013 - 2020 AngleSharp
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)
148148

149149
The MIT License (MIT)
150150

151-
Copyright (c) 2015 - 2019 AngleSharp
151+
Copyright (c) 2015 - 2020 AngleSharp
152152

153153
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:
154154

build.cake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ var projectName = "AngleSharp.Io";
33
var solutionName = "AngleSharp.Io";
44
var frameworks = new Dictionary<String, String>
55
{
6+
{ "net46", "net46" },
7+
{ "net461", "net461" },
8+
{ "net472", "net472" },
69
{ "netstandard2.0", "netstandard2.0" },
710
};
811

src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
18-
<PackageReference Include="NUnit" Version="3.11.0" />
19-
<PackageReference Include="NUnit3TestAdapter" Version="3.11.0" />
20-
<PackageReference Include="FluentAssertions" Version="5.5.3" />
17+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
18+
<PackageReference Include="NUnit" Version="3.12.0" />
19+
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
20+
<PrivateAssets>all</PrivateAssets>
21+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
22+
</PackageReference>
23+
<PackageReference Include="FluentAssertions" Version="5.10.3" />
2124
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
2225
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
2326
</ItemGroup>

src/AngleSharp.Io.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<copyright>Copyright 2016-2019, AngleSharp</copyright>
1515
<tags>html html5 css css3 dom requester http https io filesystem storage httpclient cache</tags>
1616
<dependencies>
17-
<dependency id="AngleSharp" version="0.13.0" />
17+
<dependency id="AngleSharp" version="0.14.0" />
1818
</dependencies>
1919
</metadata>
2020
</package>

src/AngleSharp.Io/AngleSharp.Io.csproj

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,37 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>AngleSharp.Io</AssemblyName>
44
<RootNamespace>AngleSharp.Io</RootNamespace>
5-
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0</TargetFrameworks>
5+
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0;net46;net461;net472</TargetFrameworks>
67
<SignAssembly>true</SignAssembly>
78
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
89
<GenerateDocumentationFile>true</GenerateDocumentationFile>
910
<LangVersion>7.1</LangVersion>
11+
<RepositoryUrl>https://github.com/AngleSharp/AngleSharp.Io</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
13+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
14+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
15+
<IncludeSymbols>true</IncludeSymbols>
16+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1017
</PropertyGroup>
1118

1219
<ItemGroup>
13-
<PackageReference Include="AngleSharp" Version="0.13.0" />
20+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<PackageReference Include="AngleSharp" Version="0.14.0" />
25+
</ItemGroup>
26+
27+
<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
28+
<Reference Include="System.Net" />
29+
<Reference Include="System.Net.Http" />
30+
<Reference Include="System.Net.WebSockets" />
31+
</ItemGroup>
32+
33+
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
34+
<Reference Include="System.Net.Http" />
1435
</ItemGroup>
1536

1637
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<PropertyGroup>
33
<Description>Providers additional requesters and IO helpers for AngleSharp.</Description>
44
<Product>AngleSharp.Io</Product>
5-
<Version>0.13.1</Version>
5+
<Version>0.14.0</Version>
66
</PropertyGroup>
77
</Project>

0 commit comments

Comments
 (0)