[java-identity-provider] 05/12: GEN-330 Build Windows installers in our standard flow
Rod Widdowson
rdw at steadingsoftware.com
Sat Apr 13 12:55:40 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch dev/IDP-2147
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=b86071a6bae80ebd5b05607244c1c91c892c428a
commit b86071a6bae80ebd5b05607244c1c91c892c428a
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Nov 8 09:58:47 2023 +0000
GEN-330 Build Windows installers in our standard flow
https://shibboleth.atlassian.net/browse/GEN-330
Add the magical configuration needed to force "dotnet" to do a
signature check on down loaded dlls
---
idp-msi/pom.xml | 2 +-
idp-msi/src/main/wix/nuget.config | 11 +++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/idp-msi/pom.xml b/idp-msi/pom.xml
index 2c730da91..207caa8a9 100644
--- a/idp-msi/pom.xml
+++ b/idp-msi/pom.xml
@@ -96,7 +96,7 @@
<arguments>
<argument>build</argument>
<argument>src/main/wix/idp.vcxproj</argument>
- <argument>/p:MsiVersion=${msi.version};IdpVersion=${project.version}</argument>
+ <argument>/p:MsiVersion=${msi.version};IdpVersion=${project.version};SuppressValidation=${supress.validation}</argument>
</arguments>
</configuration>
</execution>
diff --git a/idp-msi/src/main/wix/nuget.config b/idp-msi/src/main/wix/nuget.config
new file mode 100644
index 000000000..0d2de2a5d
--- /dev/null
+++ b/idp-msi/src/main/wix/nuget.config
@@ -0,0 +1,11 @@
+<configuration>
+ <config>
+ <add key="signatureValidationMode" value="require" />
+ </config>
+ <trustedSigners>
+ <author name="wixtoolset">
+ <!-- The current status of this certificate is "trust on first use" -->
+ <certificate fingerprint="0DB368BC1A5A9E19CC9E036B490B7C4A4D3DFB941C0781B4F22F218BE0B54986" hashAlgorithm="SHA256" allowUntrustedRoot="false" />
+ </author>
+ </trustedSigners>
+</configuration>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list