File tree Expand file tree Collapse file tree 4 files changed +30
-10
lines changed
src/SshNet.Security.Cryptography.Shared/Properties Expand file tree Collapse file tree 4 files changed +30
-10
lines changed Original file line number Diff line number Diff 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#
4446The 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
Original file line number Diff line number Diff line change 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" />
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 ) ]
You can’t perform that action at this time.
0 commit comments