You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not really a bug it is more a wish to improve the documentation or to keep it as a reference for he future if others struggle with the same problem we were having.
We were struggeling a lot to get a signed msix with digicert the error we were facing was Error information: "Error: SignerSign() failed." (-2147024885/0x8007000b). In the end we found the issue the publisher in the pubspec.yaml needs to be in the correct order. We retrived it with the following commands.
Convert PEM to CER using OpenSSL (run this command in cmd or PowerShell)
openssl x509 -inform PEM -in your_certificate.pem -outform DER -out your_certificate.cer
`Convert PEM to CER using OpenSSL (run this command in cmd or PowerShell)
openssl x509 -inform PEM -in your_certificate.pem -outform DER -out your_certificate.cer
ℹ️ Info
Version:
v3.16.7
💬 Description
This is not really a bug it is more a wish to improve the documentation or to keep it as a reference for he future if others struggle with the same problem we were having.
We were struggeling a lot to get a signed msix with digicert the error we were facing was Error information: "Error: SignerSign() failed." (-2147024885/0x8007000b). In the end we found the issue the publisher in the pubspec.yaml needs to be in the correct order. We retrived it with the following commands.
Convert PEM to CER using OpenSSL (run this command in cmd or PowerShell)
openssl x509 -inform PEM -in your_certificate.pem -outform DER -out your_certificate.cer
Import the certificate
$certPath = "C:\path\to[your_certificate.cer](http://your_certificate.cer/)"
$certStore = "Cert:\LocalMachine\My"
Import-Certificate -FilePath $certPath -CertStoreLocation $certStore
Retrieve the certificate
$cert = Get-ChildItem -Path $certStore | Where-Object { $_.Subject -like "Your Certificate Common Name" }
Display the distinguished name
$cert.Subject
📜 Pubspec.yaml
N/A
The text was updated successfully, but these errors were encountered: