Packages update

This commit is contained in:
JustArchi
2016-06-29 21:33:38 +02:00
parent 49344751af
commit bd028ba459
51 changed files with 7126 additions and 9341 deletions

View File

@@ -71,12 +71,12 @@
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<Reference Include="HtmlAgilityPack, Version=1.4.9.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.4.9\lib\Net45\HtmlAgilityPack.dll</HintPath>
<Reference Include="HtmlAgilityPack, Version=1.4.9.4, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.4.9.4\lib\Net45\HtmlAgilityPack.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.9.0.1-beta1\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="HtmlAgilityPack" version="1.4.9" targetFramework="net45" />
<package id="Newtonsoft.Json" version="9.0.1-beta1" targetFramework="net451" />
<package id="HtmlAgilityPack" version="1.4.9.4" targetFramework="net461" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
<package id="SteamKit2" version="1.7.0" targetFramework="net452" />
</packages>

View File

@@ -40,7 +40,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.9.0.1-beta1\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="9.0.1-beta1" targetFramework="net451" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
</packages>

View File

Before

Width:  |  Height:  |  Size: 699 B

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -369,11 +369,12 @@
<param name="node">The node to duplicate. May not be <c>null</c>.</param>
<param name="deep">true to recursively clone the subtree under the specified node, false to clone only the node itself.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes">
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes(System.Int32)">
<summary>
Gets all Descendant nodes for this node and each of child nodes
</summary>
<returns></returns>
<param name="level">The depth level of the node to parse in the html tree</param>
<returns>the current element as an HtmlNode</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodesAndSelf">
<summary>
@@ -381,7 +382,7 @@
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Descendants">
<member name="M:HtmlAgilityPack.HtmlNode.Descendants(System.Int32)">
<summary>
Gets all Descendant nodes in enumerated list
</summary>
@@ -520,11 +521,12 @@
<param name="value">The value for the attribute.</param>
<returns>The corresponding attribute instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo(System.IO.TextWriter)">
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo(System.IO.TextWriter,System.Int32)">
<summary>
Saves all the children of the node to the specified TextWriter.
</summary>
<param name="outText">The TextWriter to which you want to save.</param>
<param name="level">Identifies the level we are in starting at root with 0</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo">
<summary>
@@ -532,11 +534,12 @@
</summary>
<returns>The saved string.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.IO.TextWriter)">
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.IO.TextWriter,System.Int32)">
<summary>
Saves the current node to the specified TextWriter.
</summary>
<param name="outText">The TextWriter to which you want to save.</param>
<param name="level">identifies the level we are in starting at root with 0</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.Xml.XmlWriter)">
<summary>
@@ -766,6 +769,11 @@
</summary>
<returns>An XPathNavigator object. The XPathNavigator is positioned on the root of the document.</returns>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument._maxDepthLevel">
<summary>
Defines the max level we would go deep into the html document
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionAddDebuggingAttributes">
<summary>
Adds Debugging attributes to node. Default is false.
@@ -1033,6 +1041,12 @@
</summary>
<param name="writer">The XmlWriter to which you want to save.</param>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.MaxDepthLevel">
<summary>
Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is
thrown.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.CheckSum">
<summary>
Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise.

Binary file not shown.

Binary file not shown.

View File

@@ -465,11 +465,12 @@
<param name="node">The node to duplicate. May not be <c>null</c>.</param>
<param name="deep">true to recursively clone the subtree under the specified node, false to clone only the node itself.</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes">
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes(System.Int32)">
<summary>
Gets all Descendant nodes for this node and each of child nodes
</summary>
<returns></returns>
<param name="level">The depth level of the node to parse in the html tree</param>
<returns>the current element as an HtmlNode</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.DescendantNodesAndSelf">
<summary>
@@ -477,7 +478,7 @@
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.Descendants">
<member name="M:HtmlAgilityPack.HtmlNode.Descendants(System.Int32)">
<summary>
Gets all Descendant nodes in enumerated list
</summary>
@@ -616,11 +617,12 @@
<param name="value">The value for the attribute.</param>
<returns>The corresponding attribute instance.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo(System.IO.TextWriter)">
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo(System.IO.TextWriter,System.Int32)">
<summary>
Saves all the children of the node to the specified TextWriter.
</summary>
<param name="outText">The TextWriter to which you want to save.</param>
<param name="level">Identifies the level we are in starting at root with 0</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo">
<summary>
@@ -628,11 +630,12 @@
</summary>
<returns>The saved string.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.IO.TextWriter)">
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.IO.TextWriter,System.Int32)">
<summary>
Saves the current node to the specified TextWriter.
</summary>
<param name="outText">The TextWriter to which you want to save.</param>
<param name="level">identifies the level we are in starting at root with 0</param>
</member>
<member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.Xml.XmlWriter)">
<summary>
@@ -786,6 +789,11 @@
Represents a complete HTML document.
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument._maxDepthLevel">
<summary>
Defines the max level we would go deep into the html document
</summary>
</member>
<member name="F:HtmlAgilityPack.HtmlDocument.OptionAddDebuggingAttributes">
<summary>
Adds Debugging attributes to node. Default is false.
@@ -1053,6 +1061,12 @@
</summary>
<param name="writer">The XmlWriter to which you want to save.</param>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.MaxDepthLevel">
<summary>
Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is
thrown.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlDocument.CheckSum">
<summary>
Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.