blob: bb3de0c9c9b9a4938af2a766c3999f6c413ecef8 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<Project Sdk="MSBuild.Sdk.Extras/1.5.4">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard1.3;netstandard1.0;portable-net4+sl5+wp8+win8+wpa81;net4</TargetFrameworks>
<AssemblyName>BouncyCastle.Crypto</AssemblyName>
<RootNamespace>crypto</RootNamespace>
<AssemblyOriginatorKeyFile>..\..\BouncyCastle.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<Product>Bouncy Castle for .NET ($(TargetFramework))</Product>
<Copyright>© 2000-2018 Legion of the Bouncy Castle Inc. </Copyright>
<Company>The Legion of the Bouncy Castle Inc.</Company>
<Authors>Oren Novotny</Authors>
<Title>Bouncy Castle Portable</Title>
<PackageId>Portable.BouncyCastle</PackageId>
<Description>BouncyCastle portable version with support for .NET 4, .NET Standard 1.0-2.0, WP, Silverlight, MonoAndroid, Xamarin.iOS, .NET Core</Description>
<DebugType>embedded</DebugType>
<PackageLicenseUrl>https://www.bouncycastle.org/csharp/licence.html</PackageLicenseUrl>
<PackageProjectUrl>https://www.bouncycastle.org/csharp/</PackageProjectUrl>
<PackageReleaseNotes>https://www.bouncycastle.org/csharp/#RELEASENOTES182</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/onovotny/bc-csharp</RepositoryUrl>
<PackageIconUrl>https://www.bouncycastle.org/images/csharp_logo.gif</PackageIconUrl>
<PackageTags>bouncycastle cryptography encryption security</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591;618;672</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.0' ">
<DefineConstants>$(DefineConstants);PORTABLE;NO_THREADS;NEW_REFLECTION;SYS_RUNTIME</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<DefineConstants>$(DefineConstants);PORTABLE;NO_THREADS;NEW_REFLECTION;SYS_RUNTIME;DOTNET</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net4' or '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);LIB</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'portable-net4+sl5+wp8+win8+wpa81' ">
<DefineConstants>$(DefineConstants);PORTABLE;NO_THREADS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\bzip2\src\**\*.cs" LinkBase="bzip2" />
<None Include="..\..\BouncyCastle.snk" />
<PackageReference Include="NerdBank.GitVersioning" Version="2.1.23" PrivateAssets="All" />
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.0" PrivateAssets="All" />
</ItemGroup>
<Target Name="SetBuildVer" AfterTargets="GetBuildVersion" BeforeTargets="SetCloudBuildVersionVars;SetCloudBuildNumberWithVersion">
<PropertyGroup>
<CloudBuildNumber>$(BuildVersion)</CloudBuildNumber>
<Version>$(BuildVersion)</Version>
<PackageVersion>$(BuildVersion)</PackageVersion>
<NuGetPackageVersion>$(BuildVersion)</NuGetPackageVersion>
</PropertyGroup>
</Target>
</Project>
|