Skip to content

Commit

Permalink
Fix typo in PR, update nuget stuff for new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Troy Willmot committed May 21, 2017
1 parent 9f962f4 commit 7182bd1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Main/PublishNugetPackage.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.3.5.3.nupkg -Source https://www.nuget.org/api/v2/package
".nuget\NuGet.exe" push Rssdp.3.5.4.nupkg -Source https://www.nuget.org/api/v2/package
pause
4 changes: 2 additions & 2 deletions src/Main/Rssdp.Shared/AssemblyInfoCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
[assembly: AssemblyCopyright("Released under the MIT license; http://choosealicense.com/licenses/mit/; https://github.com/Yortw/RSSDP")]
[assembly: AssemblyTrademark("")]

[assembly: AssemblyVersion("3.5.2.0")]
[assembly: AssemblyFileVersion("3.5.2.0")]
[assembly: AssemblyVersion("3.5.4.0")]
[assembly: AssemblyFileVersion("3.5.4.0")]
2 changes: 1 addition & 1 deletion src/Main/Rssdp.Shared/SsdpDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ private static void LoadIcons(XmlReader reader, SsdpDevice device)

while (!reader.EOF)
{
while (!reader.EOF && reader.NodeType != XmlNodeType.Element && !(reader.NodeType == XmlNodeType.EndElement && reader.Name == "isonList"))
while (!reader.EOF && reader.NodeType != XmlNodeType.Element && !(reader.NodeType == XmlNodeType.EndElement && reader.Name == "iconList"))
{
reader.Read();
}
Expand Down
4 changes: 2 additions & 2 deletions src/Main/Rssdp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Rssdp</id>
<version>3.5.3</version>
<version>3.5.4</version>
<title>Rssdp</title>
<authors>Troy Willmot</authors>
<owners>Yortw</owners>
Expand All @@ -12,7 +12,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Really Simple Service Discovery Protocol - a 100% .Net implementation of the SSDP protocol for publishing custom/basic devices, and discovering all device types on a network.</description>
<summary>A 100% .Net implementation of the SSDP protocol for basic and custom device types.</summary>
<releaseNotes>Fix for deserialisation problems when a custom property with an empty value exists in the device description document.</releaseNotes>
<releaseNotes>Fix for deserialisation problems when a document is not prettified/lacks whitespace between nodes.</releaseNotes>
<copyright>Copyright 2017</copyright>
<language>en-AU</language>
<tags>portable xamarin ios android windowsphone winrt uwp mobile ssdp discovery device service protocol upnp netfx40 .net4</tags>
Expand Down

0 comments on commit 7182bd1

Please sign in to comment.