Skip to content

Commit 8ae9152

Browse files
committed
Update SshNet.Security.Cryptography v1.2.0.
Added .NETStandard 1.3 to nuspec. Prepare for 2016.0.0-beta3.
1 parent a47ce98 commit 8ae9152

File tree

8 files changed

+60
-32
lines changed

8 files changed

+60
-32
lines changed

build/nuget/SSH.NET.nuspec

Lines changed: 41 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>SSH.NET</id>
5-
<version>2016.0.0-beta1</version>
5+
<version>2016.0.0-beta3</version>
66
<title>SSH.NET</title>
77
<authors>Renci</authors>
88
<owners>olegkap,drieseng</owners>
99
<licenseUrl>https://github.com/sshnet/SSH.NET/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/sshnet/SSH.NET/</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<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-beta2
13+
<releaseNotes>2016.0.0-beta3
14+
==============
15+
16+
New Features:
17+
18+
* Added support for .NET Core 1.0 (.NETStandard 1.3)
19+
20+
2016.0.0-beta2
1421
==============
1522

1623
Changes:
@@ -127,21 +134,47 @@ Fixes:
127134
<language>en-US</language>
128135
<tags>ssh scp sftp</tags>
129136
<dependencies>
137+
<group targetFramework="net35" />
138+
<group targetFramework="net40" />
139+
<group targetFramework="netstandard1.3">
140+
<dependency id="Microsoft.CSharp" version="4.0.1" />
141+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
142+
<dependency id="System.Diagnostics.Debug" version="4.0.11" />
143+
<dependency id="System.Diagnostics.Tools" version="4.0.1" />
144+
<dependency id="System.Diagnostics.TraceSource" version="4.0.0" />
145+
<dependency id="System.Globalization" version="4.0.11" />
146+
<dependency id="System.IO" version="4.1.0" />
147+
<dependency id="System.IO.FileSystem" version="4.0.1" />
148+
<dependency id="System.IO.FileSystem.Primitives" version="4.0.1" />
149+
<dependency id="System.Linq" version="4.1.0" />
150+
<dependency id="System.Net.NameResolution" version="4.0.0" />
151+
<dependency id="System.Net.Sockets" version="4.1.0" />
152+
<dependency id="System.Reflection.Extensions" version="4.0.1" />
153+
<dependency id="System.Runtime.Extensions" version="4.1.0" />
154+
<dependency id="System.Security.Cryptography.Algorithms" version="4.2.0" />
155+
<dependency id="System.Text.RegularExpressions" version="4.1.0" />
156+
<dependency id="System.Threading" version="4.0.11" />
157+
<dependency id="System.Threading.Thread" version="4.0.0" />
158+
<dependency id="System.Threading.ThreadPool" version="4.0.10" />
159+
<dependency id="System.Threading.Timer" version="4.0.1" />
160+
<dependency id="System.Xml.XmlDocument" version="4.0.1" />
161+
<dependency id="System.Xml.XPath.XmlDocument" version="4.0.1" />
162+
</group>
130163
<group targetFramework="sl4">
131-
<dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
164+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
132165
</group>
133166
<group targetFramework="sl5">
134-
<dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
167+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
135168
</group>
136169
<group targetFramework="wp71">
137-
<dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
170+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
138171
</group>
139172
<group targetFramework="wp8">
140-
<dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
173+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
141174
</group>
142175
<group targetFramework="uap10.0">
143-
<dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
144-
<dependency id="System.Xml.XPath.XmlDocument" version="4.0.0" />
176+
<dependency id="SshNet.Security.Cryptography" version="[1.2.0]" />
177+
<dependency id="System.Xml.XPath.XmlDocument" version="4.0.1" />
145178
</group>
146179
</dependencies>
147180
</metadata>

src/Renci.SshNet.NETCore/project.json

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@
2222
"netstandard1.3": {
2323
"dependencies": {
2424
"Microsoft.CSharp": "4.0.1",
25-
"System.IO": "4.1.0",
25+
"SshNet.Security.Cryptography": "[1.2.0]",
26+
"System.Diagnostics.Debug": "4.0.11",
27+
"System.Diagnostics.Tools": "4.0.1",
2628
"System.Diagnostics.TraceSource": "4.0.0",
27-
"System.Security.Cryptography.Algorithms": "4.2.0",
28-
"System.Linq": "4.1.0",
2929
"System.Globalization": "4.0.11",
30+
"System.IO": "4.1.0",
3031
"System.IO.FileSystem": "4.0.1",
3132
"System.IO.FileSystem.Primitives": "4.0.1",
33+
"System.Linq": "4.1.0",
3234
"System.Net.NameResolution": "4.0.0",
3335
"System.Net.Sockets": "4.1.0",
3436
"System.Reflection.Extensions": "4.0.1",
3537
"System.Runtime.Extensions": "4.1.0",
38+
"System.Security.Cryptography.Algorithms": "4.2.0",
39+
"System.Text.RegularExpressions": "4.1.0",
3640
"System.Threading": "4.0.11",
3741
"System.Threading.Thread": "4.0.0",
3842
"System.Threading.ThreadPool": "4.0.10",
3943
"System.Threading.Timer": "4.0.1",
40-
"System.Text.RegularExpressions": "4.1.0",
4144
"System.Xml.XmlDocument": "4.0.1",
42-
"System.Xml.XPath.XmlDocument": "4.0.1",
43-
"System.Diagnostics.Tools": "4.0.1",
44-
"System.Diagnostics.Debug": "4.0.11",
45-
"SshNet.Security.Cryptography": "1.1.0"
45+
"System.Xml.XPath.XmlDocument": "4.0.1"
4646
},
4747
"buildOptions": {
4848
"define": [
@@ -73,10 +73,5 @@
7373
]
7474
}
7575
}
76-
},
77-
"scripts": {
78-
"postcompile": [
79-
"dotnet pack --no-build --configuration %compile:Configuration%"
80-
]
8176
}
8277
}

src/Renci.SshNet.Silverlight5/Renci.SshNet.Silverlight5.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
<ItemGroup>
6363
<Reference Include="Microsoft.CSharp, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
6464
<Reference Include="mscorlib" />
65-
<Reference Include="SshNet.Security.Cryptography, Version=1.1.0.0, Culture=neutral, PublicKeyToken=50c6375d29e47192, processorArchitecture=MSIL">
66-
<HintPath>..\..\packages\SshNet.Security.Cryptography.1.1.0\lib\sl5\SshNet.Security.Cryptography.dll</HintPath>
65+
<Reference Include="SshNet.Security.Cryptography, Version=1.2.0.0, Culture=neutral, PublicKeyToken=2fa9220ff3eadda4, processorArchitecture=MSIL">
66+
<HintPath>..\..\packages\SshNet.Security.Cryptography.1.2.0\lib\sl5\SshNet.Security.Cryptography.dll</HintPath>
6767
<Private>True</Private>
6868
</Reference>
6969
<Reference Include="system" />
@@ -917,7 +917,7 @@
917917
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
918918
<SilverlightProjectProperties />
919919
</FlavorProperties>
920-
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" />
920+
<UserProperties ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
921921
</VisualStudio>
922922
</ProjectExtensions>
923923
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="SshNet.Security.Cryptography" version="1.1.0" targetFramework="sl5" />
3+
<package id="SshNet.Security.Cryptography" version="1.2.0" targetFramework="sl5" />
44
</packages>

src/Renci.SshNet.UAP10/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0",
4-
"SshNet.Security.Cryptography": "1.1.0",
5-
"System.Xml.XPath.XmlDocument": "4.0.0"
4+
"SshNet.Security.Cryptography": "1.2.0",
5+
"System.Xml.XPath.XmlDocument": "4.0.1"
66
},
77
"frameworks": {
88
"uap10.0": {}

src/Renci.SshNet.WindowsPhone8/Renci.SshNet.WindowsPhone8.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -928,16 +928,16 @@
928928
<None Include="packages.config" />
929929
</ItemGroup>
930930
<ItemGroup>
931-
<Reference Include="SshNet.Security.Cryptography, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
932-
<HintPath>..\..\packages\SshNet.Security.Cryptography.1.1.0\lib\wp8\SshNet.Security.Cryptography.dll</HintPath>
931+
<Reference Include="SshNet.Security.Cryptography, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
932+
<HintPath>..\..\packages\SshNet.Security.Cryptography.1.2.0\lib\wp8\SshNet.Security.Cryptography.dll</HintPath>
933933
<Private>True</Private>
934934
</Reference>
935935
</ItemGroup>
936936
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
937937
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
938938
<ProjectExtensions>
939939
<VisualStudio>
940-
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" />
940+
<UserProperties ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
941941
</VisualStudio>
942942
</ProjectExtensions>
943943
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="SshNet.Security.Cryptography" version="1.1.0" targetFramework="wp8" />
3+
<package id="SshNet.Security.Cryptography" version="1.2.0" targetFramework="wp8" />
44
<package id="System.IO" version="4.1.0" targetFramework="wp8" />
55
</packages>

src/Renci.SshNet/Properties/CommonAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[assembly: AssemblyVersion("2016.0.0")]
1313
[assembly: AssemblyFileVersion("2016.0.0")]
14-
[assembly: AssemblyInformationalVersion("2016.0.0-beta1")]
14+
[assembly: AssemblyInformationalVersion("2016.0.0-beta3")]
1515
[assembly: CLSCompliant(false)]
1616

1717
// Setting ComVisible to false makes the types in this assembly not visible

0 commit comments

Comments
 (0)