Skip to content

Commit 06e6f7e

Browse files
committed
correct dependencies
1 parent 6e48031 commit 06e6f7e

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

curve25519-dotnet/curve25519-dotnet.nuspec

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>curve25519-dotnet</id>
5-
<version>1.2.0</version>
6-
<title>curve25519</title>
5+
<version>1.3.1</version>
6+
<title>curve25519-dotnet</title>
77
<authors>golf1052, langboost, Trolldemorted</authors>
88
<owners>golf1052, langboost</owners>
9-
<requireLicenseAcceptance>true</requireLicenseAcceptance>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<licenseUrl>https://github.com/golf1052/curve25519-pcl/blob/master/LICENSE</licenseUrl>
1111
<projectUrl>https://github.com/golf1052/curve25519-pcl</projectUrl>
1212
<description>.NETStandard C# implementation of curve25519 (and ed25519 for signing/verification) based on https://github.com/WhisperSystems/curve25519-java</description>
1313
<releaseNotes>Updated to 0.3.0 version of curve25519-java.</releaseNotes>
1414
<copyright>Copyright 2017</copyright>
1515
<tags>curve25519 signal</tags>
16+
<dependencies>
17+
<group targetFramework=".NETStandard1.4">
18+
<dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
19+
</group>
20+
</dependencies>
1621
</metadata>
1722
<files>
1823
<file src="bin\Release\curve25519-dotnet.dll" target="lib\netstandard1.4\curve25519-dotnet.dll" />

curve25519-dotnet/project.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"supports": {},
33
"dependencies": {
4-
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
5-
"NETStandard.Library": "1.6.0"
4+
"NETStandard.Library": "1.6.1"
65
},
76
"frameworks": {
87
"netstandard1.4": {}

0 commit comments

Comments
 (0)