Skip to content

Commit d4db629

Browse files
committed
Bump curve25519 version to 0.5.0
Reflects signalapp/libsignal-protocol-java@3c1a8ee Also bump Google.Protobuf version to 3.12.4
1 parent 7f87437 commit d4db629

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

libsignal-protocol-dotnet-tests/libsignal-protocol-dotnet-tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

libsignal-protocol-dotnet/libsignal-protocol-dotnet.csproj

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,28 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard1.4</TargetFramework>
55
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
6-
<IncludeSource>True</IncludeSource>
7-
<IncludeSymbols>True</IncludeSymbols>
86
<Version>2.7.0</Version>
97
<Authors>golf1052, langboost, Trolldemorted</Authors>
108
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
11-
<PackageLicenseUrl>https://www.gnu.org/licenses/gpl-3.0.html</PackageLicenseUrl>
9+
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
1210
<PackageProjectUrl>https://github.com/signal-csharp/libsignal-protocol-dotnet</PackageProjectUrl>
13-
<Description>An unofficial .NETStandard signal protocol library</Description>
11+
<Description>An unofficial .NET Standard Signal Protocol library based on https://github.com/signalapp/libsignal-protocol-java</Description>
1412
<RepositoryUrl>https://github.com/signal-csharp/libsignal-protocol-dotnet</RepositoryUrl>
13+
<RepositoryType>git</RepositoryType>
1514
<PackageTags>signal libsignal libsignal-protocol libsignal-protocol-dotnet</PackageTags>
1615
</PropertyGroup>
1716

17+
<PropertyGroup>
18+
<IncludeSymbols>true</IncludeSymbols>
19+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
20+
</PropertyGroup>
21+
1822
<ItemGroup>
19-
<PackageReference Include="curve25519-dotnet" Version="1.3.2" />
20-
<PackageReference Include="Google.Protobuf" Version="3.5.1" />
23+
<PackageReference Include="curve25519-dotnet" Version="0.5.0" />
24+
<!-- Do not upgrade! 3.12.4 is the last version to not include System.Memory (Span) which does not work on Windows 10 Mobile. -->
25+
<PackageReference Include="Google.Protobuf" Version="3.12.4" />
2126
<PackageReference Include="May-dotnet" Version="1.2.3" />
2227
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.1" />
2328
</ItemGroup>
2429

25-
</Project>
30+
</Project>

0 commit comments

Comments
 (0)