We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If you want 2 different installer for the 64 bit and 32 bit Windows platform then you have the problems:
You can solve this with the follow sample:
setupBuilder { // settings for all platforms } task msi32( type: com.inet.gradle.setup.msi.Msi ) { arch = "x86" classifier = "x86" // setting for 64 bit platform } msi { // setting for 64 bit platform } configure( [msi, msi32] ) { // settings for both platforms }
You can run this then with: gradle msi msi32 uploadArchives
gradle msi msi32 uploadArchives