-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibsignal-metadata-dotnet.csproj
31 lines (28 loc) · 1.6 KB
/
libsignal-metadata-dotnet.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<RootNamespace>libsignalmetadatadotnet</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
<Authors>Benedikt Radtke, golf1052</Authors>
<Description>An unofficial .NET Standard Signal Metadata library based on https://github.com/signalapp/libsignal-metadata-java</Description>
<PackageProjectUrl>https://github.com/signal-csharp/libsignal-metadata-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/signal-csharp/libsignal-metadata-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>0.1.2</Version>
</PropertyGroup>
<ItemGroup>
<!-- Do not upgrade! 3.12.4 is the last version to not include System.Memory (Span) which does not work on Windows 10 Mobile. -->
<PackageReference Include="Google.Protobuf" Version="3.12.4" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.12.4" />
<PackageReference Include="libsignal-protocol-dotnet" Version="2.8.1" />
<!-- Do not upgrade! 1.8.5 is the last version that supports .NETStandard 1.4 -->
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" />
</ItemGroup>
</Project>