Skip to content

Commit 4a99125

Browse files
committed
Update license and project URL
Update tags. Update release notes to prepare for new beta release. Define dependencies for UAP 10.0 TFM.
1 parent f38262f commit 4a99125

File tree

1 file changed

+32
-23
lines changed

1 file changed

+32
-23
lines changed

build/nuget/SSH.NET.nuspec

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<title>SSH.NET</title>
77
<authors>Renci</authors>
88
<owners>olegkap,drieseng</owners>
9-
<licenseUrl>http://sshnet.codeplex.com/license</licenseUrl>
10-
<projectUrl>http://sshnet.codeplex.com/</projectUrl>
11-
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12-
<description>This project was inspired by Sharp.SSH library which was ported from Java. This library is a complete rewrite using .NET, without any third party dependencies and to utilize the parallelism as much as possible to allow best performance you can get. SSH.NET supports .NET 3.5, .NET 4.0, Silverlight 4.0, Silverlight 5.0, Windows Phone 7.1 and Windows Phone 8.</description>
13-
<releaseNotes>2014.4.6-beta4
9+
<licenseUrl>https://github.com/sshnet/SSH.NET/master/LICENSE</licenseUrl>
10+
<projectUrl>https://github.com/sshnet/SSH.NET/</projectUrl>
11+
<requireLicenseAcceptance>fa</requireLicenseAcceptance>
12+
<description>SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism and with broad framework support.</description>
13+
<releaseNotes>2016.0.0-beta1
1414
==============
1515

1616
New Features:
@@ -19,12 +19,18 @@ New Features:
1919

2020
Changes:
2121

22+
* Overall performance improvements
2223
* Relicensed code under MIT licensen, explicitly permitting reuse within proprietary software
2324
provided all copies of the licensed software include a copy of the MIT License terms and the
24-
copyright notice.
25+
copyright notice
26+
* Added support for Universal Windows Platform 10 (UAP10.0)
27+
* Separated our hash algorithms into SshNet.Security.Cryptography project and package
28+
* When available, prefer hash algorithms and encodings from target framework
29+
* Refactoring to prepare for upcoming .NET Core support
30+
2531
Fixes:
2632

27-
* Fixed session event leak when SshCommand is never disposed
33+
* Race condition when SSH_MSG_GLOBAL_REQUEST is received immediately after successful authentication (GitHub issue #8)
2834

2935
2014.4.6-beta3
3036
==============
@@ -115,22 +121,25 @@ Fixes:
115121
* SftpFileStream is very slow (issue #1919)
116122
* Write access required for private key file</releaseNotes>
117123
<summary>A Secure Shell (SSH) library for .NET, optimized for parallelism.</summary>
118-
<copyright>2012-2014, RENCI</copyright>
124+
<copyright>2012-2016, RENCI</copyright>
119125
<language>en-US</language>
120-
<tags>ssh .net40 sftp .net35 wp71 wp8 silverlight windowsphone</tags>
121-
<dependencies>
122-
<group targetFramework="sl4">
123-
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
124-
</group>
125-
<group targetFramework="sl5">
126-
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
127-
</group>
128-
<group targetFramework="wp7">
129-
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
130-
</group>
131-
<group targetFramework="wp80">
132-
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
133-
</group>
134-
</dependencies>
126+
<tags>ssh scp sftp</tags>
127+
<dependencies>
128+
<group targetFramework="sl4">
129+
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
130+
</group>
131+
<group targetFramework="sl5">
132+
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
133+
</group>
134+
<group targetFramework="wp7">
135+
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
136+
</group>
137+
<group targetFramework="wp80">
138+
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
139+
</group>
140+
<group targetFramework="uap10.0">
141+
<dependency id="Renci.Security.Cryptography" version="1.0.0" />
142+
</group>
143+
</dependencies>
135144
</metadata>
136145
</package>

0 commit comments

Comments
 (0)