Skip to content

Commit 9ad85d4

Browse files
committed
Updated to AngleSharp 0.14
1 parent f4618de commit 9ad85d4

File tree

7 files changed

+22
-14
lines changed

7 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Released on Tuesday, March 31 2020.
44

55
- Fixed handling of CSS gradients (#45)
66
- Improved CSS string representation of gradients (#46)
7+
- Added support for the .NET Framework 4.6.1 target
8+
- Added support for the .NET Framework 4.7.2 target
79

810
# 0.13.0
911

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Thanks :heart: to all who contributed to AngleSharp.Css via issues, pull request
55
AngleSharp.Css contains code written by (in order of first pull request / commit):
66

77
* [Florian Rappl](https://github.com/FlorianRappl)
8+
* [Michał Kostrzewski](https://github.com/zeaposs)
9+
* [Jochen Kühner](https://github.com/jogibear9988)
810

911
Without these awesome people AngleSharp.Css could not exist. Thanks to everyone for your contributions! :beers:
1012

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
@@ -89,7 +89,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)
8989

9090
The MIT License (MIT)
9191

92-
Copyright (c) 2016 - 2019 AngleSharp
92+
Copyright (c) 2016 - 2020 AngleSharp
9393

9494
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:
9595

build.cake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ var solutionName = "AngleSharp.Css";
44
var frameworks = new Dictionary<String, String>
55
{
66
{ "net46", "net46" },
7+
{ "net461", "net461" },
8+
{ "net472", "net472" },
79
{ "netstandard1.3", "netstandard1.3" },
810
{ "netstandard2.0", "netstandard2.0" },
911
};

src/AngleSharp.Css.nuspec

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,10 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Extends the CSSOM from the core AngleSharp library.</description>
1313
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Css/blob/master/CHANGELOG.md</releaseNotes>
14-
<copyright>Copyright 2016-2019, AngleSharp</copyright>
14+
<copyright>Copyright 2016-2020, AngleSharp</copyright>
1515
<tags>html html5 css css3 dom styling library anglesharp angle</tags>
1616
<dependencies>
17-
<group targetFramework="netstandard1.3">
18-
<dependency id="AngleSharp" version="0.13.0" />
19-
</group>
20-
<group targetFramework="netstandard2.0">
21-
<dependency id="AngleSharp" version="0.13.0" />
22-
</group>
23-
<group targetFramework="net46">
24-
<dependency id="AngleSharp" version="0.13.0" />
25-
</group>
17+
<dependency id="AngleSharp" version="0.14.0" />
2618
</dependencies>
2719
</metadata>
2820
</package>

src/AngleSharp.Css/AngleSharp.Css.csproj

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,25 @@
33
<AssemblyName>AngleSharp.Css</AssemblyName>
44
<RootNamespace>AngleSharp.Css</RootNamespace>
55
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
6-
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard1.3;netstandard2.0;net46</TargetFrameworks>
6+
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard1.3;netstandard2.0;net46;net461;net472</TargetFrameworks>
77
<SignAssembly>true</SignAssembly>
88
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010
<LangVersion>7.1</LangVersion>
11+
<RepositoryUrl>https://github.com/AngleSharp/AngleSharp.Css</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
13+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
14+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
15+
<IncludeSymbols>true</IncludeSymbols>
16+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1117
</PropertyGroup>
1218

1319
<ItemGroup>
14-
<PackageReference Include="AngleSharp" Version="0.14.0-alpha-811" />
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" />
1525
</ItemGroup>
1626

1727
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">

0 commit comments

Comments
 (0)