Skip to content

Commit

Permalink
Bump BouncyCastle.Cryptography from 2.2.1 to 2.3.0
Browse files Browse the repository at this point in the history
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
dependabot[bot] authored Mar 18, 2024
1 parent 71ae8eb commit 977ea07
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
1 change: 0 additions & 1 deletion Stack
Submodule Stack deleted from 11244d
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>

0 comments on commit 977ea07

Please sign in to comment.