Skip to content

Commit 1d1f452

Browse files
committed
Re-enable support for .NET Core, and update version to 1.1.0-beta1.
1 parent be37b74 commit 1d1f452

File tree

4 files changed

+30
-10
lines changed

4 files changed

+30
-10
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ This project groups some crypto classes that were previously part of **SSH.NET**
2323

2424
#Framework Support#
2525
**SshNet.Security.Cryptography** is available for the following target frameworks:
26+
* .NET Platform Standard 1.0
27+
* .NET Platform Standard 1.3
2628
* .NET Framework 2.0
2729
* .NET Framework 4.0
2830
* .NET Framework 4.5
@@ -43,12 +45,12 @@ FEATURE_CRYPTO_HASHALGORITHM | [HashAlgorithm](https://msdn.microsoft.com/en-us/
4345
#Build#
4446
The following software is required to build **SshNet.Security.Cryptography** in all its supported flavors:
4547

46-
Software | .NET 3.5 | .NET 4.0 | .NET 4.5 | SL 4 | SL 5 | WP 71 | WP 80 | WPA 81 | WIN8 | UAP10
47-
--------------------------------- | :------: | :------: | :------: | :--: | :--: | :---: | :---: | :----: | :--: | :---:
48-
Windows Phone SDK 8.0 | | | | x | x | x | x | x | | x
49-
Visual Studio 2012 Update 5 | x | x | | x | x | x | x | | |
50-
Visual Studio 2015 Update 2 | x | x | x | | x | | x | x | x | x
51-
.NET CLI SDK Preview 1 | | | | | | | | | |
48+
Software | .NET 3.5 | .NET 4.0 | .NET 4.5 | SL 4 | SL 5 | WP 71 | WP 80 | WPA 81 | WIN8 | UAP10 | .NETStandard 1.0 | .NETStandard 1.3
49+
--------------------------------- | :------: | :------: | :------: | :--: | :--: | :---: | :---: | :----: | :--: | :---: |:---------------: | :--------------:
50+
Windows Phone SDK 8.0 | | | | x | x | x | x | x | | x | |
51+
Visual Studio 2012 Update 5 | x | x | | x | x | x | x | | | | |
52+
Visual Studio 2015 Update 2 | x | x | x | | x | | x | x | x | x | x | x
53+
.NET CLI SDK Preview 1 | | | | | | | | | | | x | x
5254

5355
**Note:**
5456

build/build.proj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@
5151
<OutputDirectory>SshNet.Security.Cryptography.NET45+Win8+WPA81\bin\$(Configuration)</OutputDirectory>
5252
<Moniker>portable-net45+win8+wpa81</Moniker>
5353
</TargetFramework>
54+
<TargetFramework Include=".NETStandard 1.0">
55+
<OutputDirectory>SshNet.Security.Cryptography.NETCore\bin\$(Configuration)\netstandard1.0</OutputDirectory>
56+
<Moniker>netstandard1.0</Moniker>
57+
</TargetFramework>
58+
<TargetFramework Include=".NETStandard 1.3">
59+
<OutputDirectory>SshNet.Security.Cryptography.NETCore\bin\$(Configuration)\netstandard1.3</OutputDirectory>
60+
<Moniker>netstandard1.3</Moniker>
61+
</TargetFramework>
5462
</ItemGroup>
5563
<Target Name="Clean">
5664
<RemoveDir Directories="$(MSBuildThisFileDirectory)target"/>

build/nuget/SshNet.Security.Cryptography.nuspec

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,27 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>SshNet.Security.Cryptography</id>
5-
<version>1.0.0</version>
5+
<version>1.1.0-beta1</version>
66
<title>SshNet.Security.Cryptography</title>
77
<authors>Renci</authors>
88
<owners>drieseng,olegkap</owners>
99
<licenseUrl>https://github.com/sshnet/Cryptography/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/sshnet/Cryptography/</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Cryptographic functions for .NET</description>
13+
<releaseNotes>Added support for .NET Core (netstandard 1.0 and 1.3).</releaseNotes>
1314
<summary>Cryptographic functions for .NET</summary>
1415
<copyright>2010-2016, RENCI</copyright>
1516
<language>en-US</language>
1617
<tags>crypto</tags>
18+
<dependencies>
19+
<group targetFramework="netstandard1.0">
20+
<dependency id="System.IO" version="4.0.0-rc2-24027" />
21+
</group>
22+
<group targetFramework="netstandard1.3">
23+
<dependency id="System.IO" version="4.0.0-rc2-24027" />
24+
<dependency id="System.Security.Cryptography.Primitives" version="4.0.0-rc2-24027" />
25+
</group>
26+
</dependencies>
1727
</metadata>
1828
</package>

src/SshNet.Security.Cryptography.Shared/Properties/CommonAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
[assembly: AssemblyTrademark("")]
1010
[assembly: AssemblyCulture("")]
1111

12-
[assembly: AssemblyVersion("1.0.0")]
13-
[assembly: AssemblyFileVersion("1.0.0")]
14-
[assembly: AssemblyInformationalVersion("1.0.0")]
12+
[assembly: AssemblyVersion("1.1.0")]
13+
[assembly: AssemblyFileVersion("1.1.0")]
14+
[assembly: AssemblyInformationalVersion("1.1.0-beta1")]
1515
[assembly: CLSCompliant(false)]
1616

1717
[assembly: ComVisible(false)]

0 commit comments

Comments
 (0)