6
6
<title >SSH.NET</title >
7
7
<authors >Renci</authors >
8
8
<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
14
14
==============
15
15
16
16
New Features:
@@ -19,12 +19,18 @@ New Features:
19
19
20
20
Changes:
21
21
22
+ * Overall performance improvements
22
23
* Relicensed code under MIT licensen, explicitly permitting reuse within proprietary software
23
24
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
+
25
31
Fixes:
26
32
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)
28
34
29
35
2014.4.6-beta3
30
36
==============
@@ -115,22 +121,25 @@ Fixes:
115
121
* SftpFileStream is very slow (issue #1919)
116
122
* Write access required for private key file</releaseNotes >
117
123
<summary >A Secure Shell (SSH) library for .NET, optimized for parallelism.</summary >
118
- <copyright >2012-2014 , RENCI</copyright >
124
+ <copyright >2012-2016 , RENCI</copyright >
119
125
<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 >
135
144
</metadata >
136
145
</package >
0 commit comments