Skip to content

Commit

Permalink
Fix wrong default option for ed25519 signature use in app cast gen
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Sep 15, 2024
1 parent d0a54ae commit a94aa3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent />
<AssemblyVersion>2.7.0.0</AssemblyVersion>
<FileVersion>2.7.0.0</FileVersion>
<AssemblyVersion>2.7.1.0</AssemblyVersion>
<FileVersion>2.7.1.0</FileVersion>
<PackageId>NetSparkleUpdater.Tools.AppCastGenerator</PackageId>
<Version>2.7.0</Version>
<Version>2.7.1</Version>
<Authors>Deadpikle</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion src/NetSparkle.Tools.AppCastGenerator/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class Options

[Option("use-ed25519-signature-attribute", SetName = "local", Required = false,
HelpText = "If true and doing XML output, the output signature attribute in the XML will be 'edSignature' rather than 'signature' to match the original Sparkle library.",
Default = "signature")]
Default = false)]
public bool UseEd25519SignatureAttributeForXml { get; set; }

[Option("public-key-override", SetName = "local", Required = false, HelpText = "Public key override (ignores whatever is in the public key file) for signing binaries. This" +
Expand Down

0 comments on commit a94aa3d

Please sign in to comment.