Skip to content

Commit

Permalink
Fix code formatting, update version # and nuget package for publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yortw committed Jun 29, 2016
1 parent 64178f2 commit aafa25b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,5 @@ TestResults
/src/Main/Rssdp.1.0.0.10.nupkg
/src/Main/Rssdp.1.0.0.11.symbols.nupkg
/src/Main/Rssdp.1.0.0.11.nupkg
/src/Main/Rssdp.1.0.0.12.symbols.nupkg
/src/Main/Rssdp.1.0.0.12.nupkg
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.1.0.0.11.nupkg
".nuget\NuGet.exe" push Rssdp.1.0.0.12.nupkg
pause
2 changes: 1 addition & 1 deletion src/Main/RSSDP.Portable/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.11")]
[assembly: AssemblyFileVersion("1.0.0.12")]
[assembly: CLSCompliant(false)]
10 changes: 5 additions & 5 deletions src/Main/RSSDP.Portable/SsdpDevicePublisherBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -453,11 +453,11 @@ private void SendAllAliveNotifications(object state)
SendAliveNotifications(device, true);
}
}
catch (ObjectDisposedException ex)
{
WriteTrace("Publisher stopped, exception " + ex.Message);
Dispose();
}
catch (ObjectDisposedException ex)
{
WriteTrace("Publisher stopped, exception " + ex.Message);
Dispose();
}
finally
{
if (!this.IsDisposed)
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>1.0.0.11</version>
<version>1.0.0.12</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 crash during deserialisation of device description documents containing custom properties with complex xml values.</releaseNotes>
<releaseNotes>Suppress an uncatchable unhandled exception in publisher when a NIC because unexpectedly unavailable/unwritable.</releaseNotes>
<copyright>Copyright 2016</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 aafa25b

Please sign in to comment.