Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: PKCS12 ephemeral key and non-encrypted MAC are not supported macOS #124

Merged
merged 22 commits into from
Aug 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: update
Signed-off-by: Junjie Gao <[email protected]>
JeyJeyGao committed Aug 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 6222aa76084979260a38e4d93f37fc9dc5a42723
2 changes: 1 addition & 1 deletion .github/.codecov.yml
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ coverage:
target: 80%
patch:
default:
target: 55%
target: 80%
Original file line number Diff line number Diff line change
@@ -24,7 +24,22 @@
</ItemGroup>

<Target Name="GenerateBuildMetadata" BeforeTargets="CoreCompile">
<WriteLinesToFile File="$(IntermediateOutputPath)\GetPluginMetadta.g.cs" Lines="&#xA; namespace Notation.Plugin.AzureKeyVault.Command&#xA; {&#xA; public partial class GetPluginMetadata&#xA; {&#xA; static GetPluginMetadata()&#xA; {&#xA; Version = &quot;$(Version)&quot;%3b&#xA; CommitHash = &quot;$(CommitHash)&quot;%3b&#xA; }&#xA; }&#xA; }" Overwrite="true" WriteOnlyWhenDifferent="true" />
<WriteLinesToFile
File="$(IntermediateOutputPath)\GetPluginMetadta.g.cs"
Lines='
namespace Notation.Plugin.AzureKeyVault.Command
{
public partial class GetPluginMetadata
{
static GetPluginMetadata()
{
Version = "$(Version)"%3b
CommitHash = "$(CommitHash)"%3b
}
}
}'
Overwrite="true"
WriteOnlyWhenDifferent="true" />
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)\GetPluginMetadta.g.cs" />
</ItemGroup>