File tree 4 files changed +19
-5
lines changed
4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1
1
# 0.13.0
2
2
3
- Released on Friday , August 23 2019.
3
+ Released on Monday , August 26 2019.
4
4
5
5
- Added ` Compute ` extension for ` ICssStyleDeclaration `
6
6
- Added ` GetMatchingStyles ` extension for ` ICssRuleList `
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ var solutionName = "AngleSharp.Css";
4
4
var frameworks = new Dictionary < String , String >
5
5
{
6
6
{ "net46" , "net46" } ,
7
+ { "netstandard1.3" , "netstandard1.3" } ,
7
8
{ "netstandard2.0" , "netstandard2.0" } ,
8
9
} ;
9
10
Original file line number Diff line number Diff line change 14
14
<copyright >Copyright 2016-2019, AngleSharp</copyright >
15
15
<tags >html html5 css css3 dom styling library anglesharp angle</tags >
16
16
<dependencies >
17
- <dependency id =" AngleSharp" version =" 0.13.0" />
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 >
18
26
</dependencies >
19
27
</metadata >
20
28
</package >
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<AssemblyName >AngleSharp.Css</AssemblyName >
4
4
<RootNamespace >AngleSharp.Css</RootNamespace >
5
- <TargetFrameworks Condition =" '$(OS)' != 'Windows_NT' " >netstandard2.0</TargetFrameworks >
6
- <TargetFrameworks Condition =" '$(OS)' == 'Windows_NT' " >netstandard2.0;net46</TargetFrameworks >
5
+ <TargetFrameworks Condition =" '$(OS)' != 'Windows_NT' " >netstandard1.3; netstandard2.0</TargetFrameworks >
6
+ <TargetFrameworks Condition =" '$(OS)' == 'Windows_NT' " >netstandard1.3; netstandard2.0;net46</TargetFrameworks >
7
7
<SignAssembly >true</SignAssembly >
8
8
<AssemblyOriginatorKeyFile >Key.snk</AssemblyOriginatorKeyFile >
9
9
<GenerateDocumentationFile >true</GenerateDocumentationFile >
10
10
<LangVersion >7.1</LangVersion >
11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
14
- <PackageReference Include =" AngleSharp" Version =" 0.12.1" />
14
+ <PackageReference Include =" AngleSharp" Version =" 0.13.0" />
15
+ </ItemGroup >
16
+
17
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1.3'" >
18
+ <PackageReference Include =" System.Net.Requests" Version =" 4.3.0" />
19
+ <PackageReference Include =" System.Reflection.TypeExtensions" Version =" 4.5.1" />
15
20
</ItemGroup >
16
21
17
22
<PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
You can’t perform that action at this time.
0 commit comments