-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump BouncyCastle.Cryptography from 2.2.1 to 2.3.0
Bumps [BouncyCastle.Cryptography](https://github.com/bcgit/bc-csharp) from 2.2.1 to 2.3.0. - [Commits](bcgit/bc-csharp@release-2.2.1...release-2.3.0) --- updated-dependencies: - dependency-name: BouncyCastle.Cryptography dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
71ae8eb
commit 977ea07
Showing
2 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
Stack/Libraries/Opc.Ua.Security.Certificates/Opc.Ua.Security.Certificates.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>Opc.Ua.Security.Certificates</AssemblyName> | ||
<TargetFrameworks>$(LibTargetFrameworks)</TargetFrameworks> | ||
<PackageId>OPCFoundation.NetStandard.Opc.Ua.Security.Certificates</PackageId> | ||
<RootNamespace>Opc.Ua.Security.Certificates</RootNamespace> | ||
<Description>OPC UA Security X509 Certificates Class Library</Description> | ||
<IsPackable>true</IsPackable> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageLicenseFile></PackageLicenseFile> | ||
<!-- currently the packages based on bouncy castle exposes additional API | ||
so package validation is disabled to pass the build --> | ||
<EnablePackageValidation>false</EnablePackageValidation> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<Choose> | ||
<When Condition="'$(TargetFramework)' == 'net462'"> | ||
<ItemGroup> | ||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" /> | ||
</ItemGroup> | ||
</When> | ||
<When Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<ItemGroup> | ||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" /> | ||
</ItemGroup> | ||
</When> | ||
<Otherwise> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ECC_SUPPORT</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" /> | ||
</ItemGroup> | ||
</Otherwise> | ||
</Choose> | ||
|
||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<PackageId>$(PackageId).Debug</PackageId> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(SignAssembly)' == 'true'"> | ||
<DefineConstants>$(DefineConstants);SIGNASSEMBLY</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Formats.Asn1" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net472'"> | ||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net48'"> | ||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" /> | ||
</ItemGroup> | ||
|
||
<Target Name="GetPackagingOutputs" /> | ||
|
||
</Project> |